You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title Bug Workaround for JS Charts Error: Not enough data to display chart
pageHeader.scroll
code
nullData = new Array( );
myChart.setDataArray(nullData,"null");
Add these 2 lines to your javascript.
Basically, if the first data set has only 1 data point, JSCharts will fire the alert. If it has 0 or 2+ data points, it won't. This fix creates an empty data series which disables this alert.