stefanl Report post Posted September 1, 2016 (edited) Hi, I have two charts one above another and both of them are scroll stacked column charts. When I do a scroll on one chart I need to set position of scroller of another chart at same position as it at first chart. My question is can I make scroll on one chart and that scroll apply on another charts also and how I can do that if its possible? Im using 3.9 version of FC Edited September 1, 2016 by stefanl Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted September 1, 2016 Hi,I am afraid there is no such property available in fusioncharts right now. However, you can use scroll bar property for each individual charts.Hope this helps. Share this post Link to post Share on other sites
stefanl Report post Posted September 1, 2016 (edited) However, you can use scroll bar property for each individual charts. Hi Ayan, is there any chart property for setting bar position or scroll end? Edited September 1, 2016 by stefanl Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted September 1, 2016 Hi, Yes its possible to make the scroll position to end. Use this attribute "scrollToEnd":"1". For further reference regarding this please check this sample fiddle link http://jsfiddle.net/t3SKj/135/Hope this helps. Share this post Link to post Share on other sites
stefanl Report post Posted September 1, 2016 (edited) Yes, just few minutes ago I found solution. I have one array with several FC objects and, I'm going with loop through that array and set every chart in array scroll position. this.chartObject.addEventListener('scrollEnd', function (eo, ao) { scrollPosition = 0.6782364 - in my example for (var i = 0; i < self.chartObjects.length; i++) { chartObjects.setChartAttribute('scrollToEnd', ao.scrollPosition); } }); Thanks Ayan Edited September 1, 2016 by stefanl Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted September 1, 2016 Hi, I'm glad that it worked for you. Happy fusioncharting Share this post Link to post Share on other sites