You have two options:
- enable marker for entire series, but disable for each point
- use two series, one for data, one for legend and link them together by id
Example:
var chart = new Highcharts.Chart({ chart: { renderTo: 'container' }, plotOptions: { series: { marker: { enabled: false } } }, series: [{ data: [], name: 'test', id: 'id-1', color: 'red', marker: { enabled: true } }, { linkedTo: 'id-1', color: 'red', data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0] }] });
source share