Guest Basundhara Ghosal

Performance issue while rendering Realtime Line DY

Recommended Posts

We are facing the performance issue of chart rendering when the chart width is more.

 

 

 

We are suppose to show the XY chart in detail for every second for the period of 15 mins. For that we make chart width as 2500.

 

 

 

Rendering time of this chart is really long. Also this chart doesn't have the horizontal scroll bar. (Same case in Scatter XY chart, also doesn't have horizontal scroll bar)

 

 

 

Any suggestions to make performance better?

 

 

 

Fusion team: you can consider these in the next release

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

Could you please send us the sample code that you are using, as an attachment?

Also, could you please send us the screen-shot of the error that you are receiving, as an attachment?

Awaiting your reply.

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

setDataXML :- You can change the data of a chart at client side using the setDataXML method of chart.

Ref.- http://www.fusioncharts.com/docs?/JS_setDataXML.html

setDataURL :- Using this method, we just provide the URL of the XML data document to chart. It then becomes the job of the chart to request data from that URL, parse it and finally render it.

Ref.- http://www.fusioncharts.com/docs?/JS_setDataURL.html

Hope this helps. :)

Share this post


Link to post
Share on other sites

This is my chart object

 

 

 

var loudNessChart = iqCharts.createRealTimeLineDYChart( 2500, portletHeight, null, "loudNessChart", obj.loudness );

 

 

 

function returns the widget after setting the dataXML

 

 

 

this.createRealTimeLineDYChart = function( width, height, dataUrl, chartId, dataXML ){

 

return this.createWidget( width, height, 'RealTimeLineDY.swf', dataUrl, chartId, dataXML )

 

}

 

 

 

But my dataXML is huge. I attached the files now

post-9209-128441585692_thumb.png

dataXML.xml

post-9209-128441585719_thumb.png

Edited by Guest

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

Please try setting the attribute 'animation' to '0' in the <chart> element.

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