amcharts / amcharts5

The newest, fastest, and most advanced amCharts charting library for JavaScript and TypeScript apps.
Other
354 stars 95 forks source link

Programmatically scrollbar scrolling #1772

Open fruitbang opened 1 month ago

fruitbang commented 1 month ago

Is there way to scroll legend verticalScrollbar by added buttons? I need to make something like this: image

martynasma commented 1 month ago

You can set start and end settings of a Slider or a Scrollbar. E.g.:

legend.get("verticalScrollbar").setAll({
  start: 0.5,
  end: 0.5
});

This will position the scrollbar at the middle.

fruitbang commented 1 month ago

wow, cool. tnx

github-actions[bot] commented 3 hours ago

This issue is stale because it has been open 30 days with no activity. It will be closed in 5 days unless a new comment is added.