dropways / deskapp

DeskApp Admin is a free to use Bootstrap 4 admin template.

Home Page:https://dropways.github.io/deskapp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Highcharts issue

Vlad4GH opened this issue · comments

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.
Issue
ShouldBe
WithMarker

Hello @Vlad4GH

please check new code

Now it's working properly.
Thanks.