Juan Ruiz Report post Posted March 26, 2013 Hi all! Anyone knows how to set the no data to display text via jQuery? Thanks in advance. Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted March 27, 2013 Hi, If you are using FusionCharts jQuery plugin to render the charts, you can set the chart message for "no data to display" error, by passing as query string to the chart SWF URL. Ref. Code: $(document).ready(function(){ $("#chartContainer").insertFusionCharts({ swfUrl: "Charts/Pie2D.swf?ChartNoDataText=Please Select Record...", dataSource: "<chart></chart>", dataFormat: "xml", renderer: "flash", width: "600", height: "400", id: "myChartId" }); }); But, please note that this will work only not work for JavaScript charts. For more information on "FusionCharts jQuery plugin overview", please follow the link below: http://docs.fusioncharts.com/charts/contents/?jQuery/Overview.html Hope this helps! Share this post Link to post Share on other sites