jberchet Report post Posted October 24, 2013 hi is ther a way to hide a dataset in the csv export with context menu ? i have spline that i dont want to export to csv , the context menu export all datas ? Share this post Link to post Share on other sites
Guest Sumedh Report post Posted October 25, 2013 Hello, The export functionality of FusionCharts XT will export all the data by default. If you want to export data excluding one particular dataset, then you would need to make use of "visible" attribute at <dataset> element. Set this attribute as "0" at <dataset> element. Ref. Code: <dataset seriesName='year 2012' visible='0'> Then, you would need to pass this updated XML to chart and re-render in export function. You would need to write this logic before export declaration. And to retain the dataset again, you would need to again re-render the chart which will contain this configuration "visible='1'" in the FC_Exported event call. Hope this helps! Share this post Link to post Share on other sites