I have a LineChart and I can plot with different Stroke Dash Array but I can’t plot as dotted such as
-fx-stroke-dash-array: 0.1,5.0;
or
-fx-stroke-dash-array: 0.8,8.0;
Any reason for this? When I use these settings it plots as solid line.
Thanks
According to the cssref
-fx-stroke-dash-arrayhas a type “size [size ]+”, so it doesn’t need commas inside.I tried on a separate application, not related to charts. And
shows a solid line, while
shows a dotted line.