I have a line chart with a 4 lines/series and I’d like to have two of those lines appear dashed, and the other two appear solid. By default, all lines are solid.
If I use the “lineDashStyle” option, it will obviously make all 4 lines dashed. I therefore assume the “series” option is the way to go, with the “lineDashStyle” option embedded within.
Here’s how I set it up…
Option: series
variable text:
{
1: { lineDashStyle: [1, 1] },
3: { lineDashStyle: [2, 2] }
}
Unfortunately, all of the lines are sticking to their default solid format.
Anyone able to provide insight here?