What I've tried:
scrollPane.setScrollPercentY(100);
and
scrollPane.setScrollY(1);
or
scrollPane.setScrollY(0);
But it only scrolls to the top, not to the bottom.
Alright, it worked that way:
scrollPane.scrollTo(0, 0, 0, 0);
Hope it helps someone!