Francesco Report post Posted August 14, 2018 (edited) Hi all, in a stackedcolumn2d we need to hide series and categories. First is handled by legend clicks and for the latter we defined a custom JavaScript function in link label attribute. Here we look for Fusioncharts widget and call getChartData() in order to manipulate the dataset before calling setChartData again. However, apart from 'initiallyHidden' attribute only works for series and we could not find a similar attribute for driving categories visibility. If you look at attached image, hiding first column in the chart will make it re-scale, giving a decent size to other very small columns. Regards, Francesco Edited August 14, 2018 by Francesco Share this post Link to post Share on other sites
Francesco Report post Posted August 14, 2018 ...the only way we found to achieve this behaviour is to actually remove data from chart dataset before calling setChartData() in click callback function. Is this the only one solution? Regards, Francesco Share this post Link to post Share on other sites
Akash Biswas Report post Posted August 17, 2018 Hi Francesco, To hide the dataset initially you can set the attribute "visible" to "0" at dataset objects. Refer to the sample : http://jsfiddle.net/cqvpe27z/ To hide the x-axis category labels, you need to set "showLabels" to "0" at chart-level dataSource. Or you can also set "showLabel" attribute individually at each category objects. Refer to this sample fiddle : http://jsfiddle.net/cqvpe27z/1/ For further reference check the documentation link : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/data-labels If you still have any question, feel free to ask along with a sample for reference. Thanks, Akash. Share this post Link to post Share on other sites