Highcharts issue
Vlad4GH opened this issue · 2 comments
Vlad4GH commented
Steps to reproduce
add to "vendors\scripts\highchart-setting.js" for chart1:
Highcharts.chart('chart1', {
chart: {
type: 'spline'
},
plotOptions: {
spline: {
marker: {
enabled: false
}
},
series: {
label: {
connectorAllowed: false
},
pointStart: 2010
}
},
Expected result
no datapoint symbols on lines and colored dashes as prefix for legend
Actual result
no datapoint symbols on lines and no prefix for legend
If you want to get line chart without datapoints symbols, you should add follow code:
plotOptions: { spline: { marker: { enabled: false } } }
But it also removes colored prefixes from legend. Originally, it should remove only symbols from legend, but left colored lines as prefix for line labels.
Vlad4GH commented
Now it's working properly.
Thanks.