I am using dotnet highchart in my project, I want to use the visible attribute of point like the following:
series: [{
type: 'pie',
name: 'Browser share',
data: [
['Firefox', 45.0],
['IE', 26.8],
{
name: 'Chrome',
y: 12.8,
visible: false
},
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]
}]
but I did not find this attribute in dotnet highchart, so how can I do it?
Please refer the link below. I think it will help you to some extent.
This hides unwanted series values.
JSFiddle