ZingChart: Hide Legend & Series Plots on Render
You can hide a specific series by setting it do be visible: false
in the configuration
{
series: [
{
text: 'Week 3',
values: [25, 22, 55, 29, 55, 28, 31],
backgroundColor: '#66bb6a',
visible: false
},
...
]
}