Sign in to follow this  
tyler

Real-Time Drill-Drown?

Recommended Posts

Hello,

 

Is there any way to create a real-time drill-down chart?  I was reading about LinkedCharts in the documentation, but I am unsure if these can be used in Real-Time charts or not.

Share this post


Link to post
Share on other sites

I ended up making a quick demo and found that the drill-down does indeed work with realtime charts:

 

response.Append("&value=");
response.Append(rand.Next(20,100));
response.Append("|");
response.Append(rand.Next(20,100));


response.Append("&link=");
response.Append("newchart-xmlurl-");
response.Append("/path/to/chart/TestChild.xml");


Response.Write(response);

Share this post


Link to post
Share on other sites

 

I ended up making a quick demo and found that the drill-down does indeed work with realtime charts:

 

response.Append("&value=");
response.Append(rand.Next(20,100));
response.Append("|");
response.Append(rand.Next(20,100));


response.Append("&link=");
response.Append("newchart-xmlurl-");
response.Append("/path/to/chart/TestChild.xml");


Response.Write(response);

 

Hi,

 

Thanks for the update.

 

Yes, drill-down is supported on Realtime charts. We are glad that you could resolve the issue.

 

Happy FusionCharting! :)

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