Sign in to follow this  
daniel_moon16

Possible to hide series' initailly?

Recommended Posts

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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this