javascript - Dotnet highchart visible attribute -
i using dotnet highchart in project, want use visible attribute of point 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 did not find attribute in dotnet highchart, how can it?
please refer link below. think extent.
this hides unwanted series values.
$(function () { $('#container').highcharts({ series: [{ data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4], visible:false }, { data: [129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4] }] }); });
Comments
Post a Comment