* @param value the new scroll value
* @param config the fx config
* @return this
*/
public El scrollTo(String side, int value, FxConfig config) {
ScrollDir dir = ScrollDir.VERTICAL;
if (side.equalsIgnoreCase("left")) {
dir = ScrollDir.HORIZONTAL;
}
BaseEffect.scroll(this, config, dir, value);
return this;