ZingChart: How to hide flash of ZingChart logo on rendering chart
Before a chart is fully rendered, it has a placeholder of the ZingChart logo. This sometimes causes a brief flash of the ZingChart logo which can be an issue depending on different use cases. We can disable the ZingChart logo displaying when the chart is rendering to fix this by adding hideprogresslogo:true to the render method. Here is an example of how to set this up:
zingchart.render({ id: 'myChart', hideprogresslogo:true, data: myConfig, height: '100%', width: '100%' });