daniel_moon16 Report post Posted January 22, 2014 Is it possible to start with a graph only showing some of the series? I want to show a graph with about 20 series in it but I only want maybe 4 to initially appear. Share this post Link to post Share on other sites
Haritha Report post Posted January 23, 2014 Hi, In a multi-series chart, the datasets are associated with their Legend. Hence, if you do not want to show a particular dataset, then you need to set the visibility of that dataset to 0. When you do this, the dataset will not be shown on the chart when the chart is first loaded but you will be able to show it when you click on its corresponsing legend. For setting the visibility of a dataset to 0, use : <dataset .. visible='0' > Hope this helps. Share this post Link to post Share on other sites
daniel_moon16 Report post Posted January 23, 2014 Hi, thank you but unfortunately that didn't work. I tried: <dataset color="FA5058" visible="0" seriesName="STD Low 364" alpha="25" showValues="0" drawAnchors="0"> I am using the RealTimeLine chart on version 3.3.1 xt Share this post Link to post Share on other sites
Haritha Report post Posted January 24, 2014 Hi, This attribute works with JavaScript variant of Real time Line chart only. It appears that you are using a Flash chart. For converting your existing Flash chart to JavaScript chart,place this line before chart creation: FusionCharts.setCurrentRenderer('JavaScript'); Hope this helps. Share this post Link to post Share on other sites