How can I hide series from a HighCharts legend?

Z Jones picture Z Jones · Jul 21, 2011 · Viewed 28.8k times · Source

I have 4 series in my chart. 2 are visible when the chart loads. 2 are hidden.

When the user zooms in, the visibility switches.

How can I have a legend that only displays the 2 visible series?

Answer

Igor Dymov picture Igor Dymov · Jul 22, 2011

Pass showInLegend parameter to series you don't want to be visible in legend like:

series.showInLegend = false;