DevExtreme jQuery/JS - Show and Hide a Series

The Chart provides an API for showing and hiding a series at runtime. The most common use-case for this API is to show or hide a series when a user clicks the chart legend. To implement this scenario, you need to handle the legendClick event in the following manner. The isVisible(), hide() and show() are methods of the Series object.

JavaScript
  • $(function() {
  • $("#chartContainer").dxChart({
  • // ...
  • onLegendClick: function (e) {
  • var series = e.target;
  • if (series.isVisible()) {
  • series.hide();
  • } else {
  • series.show();
  • }
  • }
  • });
  • });

A series can be hidden initially. For this, assign false to the visible option of the object that configures the series.

JavaScript
  • $(function() {
  • $("#chartContainer").dxChart({
  • // ...
  • series: [{
  • // ...
  • visible: false
  • }, {
  • // ...
  • }]
  • });
  • });
See Also