Hi,
I have a line chart to show two data series, I use two line types but the legend is not synced with the series dash type.
function GetSeries() {
return [{
name: chartTerms[68941],
type: "line",
dashType: "dot",
field: "Benchmark",
color: chartColors["LightPurple"],
markers: {
visible: false
},
},
{
name: chartTerms[7151],
type: "line",
field: "Result",
color: chartColors["DarkPurple"],
markers: {
visible: false
},
}]
}
what I see is:
The Benchmark legend is not correct, it should be "dot"
Any idea?