User clicking on legend currently hides/shows that series on the chart. Would be great to have a public method that does the same so we can show/hide a series programmatically. (Like the private _legendItemClick method currently does.)
Hello,
The method is now available as part of the public API:
https://docs.telerik.com/kendo-ui/api/javascript/dataviz/chart/chart_series/methods/togglevisibility
Regards,
Alex Hajigeorgieva
Progress Telerik
series.visible = false (greyed-out legend item) //Hide first series $("#chart").data("kendoChart").options.series[0].visible = false; $("#chart").data("kendoChart").redraw();