Sign in to follow this  
ejemni38

2 or more real-time cylinder gauges on 1 page

Recommended Posts

How can I place 2 or more real time cylinder gauges on the 1 page. I can use &value to update 1 automatically so what format should this be for 2 or more cylinder gauges on the 1 page?

Share this post


Link to post
Share on other sites
Guest Rishab

Hi,

 

You can put as many charts as you want in a web page.

 

For this you need different <div>/<span> to render the charts.

 

For every chart you can provide a different data XML and provide different 'dataStreamURL'.

 

For example-

var myChart = new FusionCharts( "Cylinder", "myChartId", "300", "250", "0" );
myChart.setXMLUrl("Data.xml");
myChart.render("chartContainer");

var myChart2 = new FusionCharts( "Cylinder", "myChartId2", "300", "250", "0" );
myChart2.setXMLUrl("Data2.xml");
myChart2.render("chartContainer2");

Please refer to the attached sample along with the screenshot showcasing three real time charts.

 

Please refer the link below for more information on RealTime Cylinder widget-

Link-http://docs.fusioncharts.com/widgets/Contents/Cylinder/RealTime.html

 

Hope this helps.

RealTime (3).zip

post-47865-0-59688800-1387280366_thumb.jpg

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