visible - Hide / Unhide Data Series | CanvasJS Charts

visible: Boolean Sets the visibility of dataSeries. Data Series is visible by default and you can hide the same by setting visible property to false. Default: true Example: true, false var chart = new CanvasJS.Chart(“container”, { . . data: [{ visible: false, . . }], . . }); chart.render(); In the below example first data … Continue reading visible