BrokenCode
BrokenCode

Reputation: 961

Add item to Highcharts legend?

Is it possible to add an item to the Highcharts legend?

I have added a custom marker at a specific point in my line chart and would like to explain to the user what this marker indicates, so ideally I would add this as an additional item to the legend area.

Upvotes: 0

Views: 1092

Answers (1)

jlbriggs
jlbriggs

Reputation: 17800

The easiest way is to add that custom marker as a separate series, instead of within the original series.

{
 name: 'Special Point',
 marker: { enabled: true },
 data: [[4,9]] 
}

Example:

custom point in legend

Upvotes: 3

Related Questions