2๐
โ
Set the pointDot
option to true.
...
pointDot : true,
...
Then set the pointColor
and pointStrokeColor
for the series to transparent and the pointHighlightFill
and pointHighlightStroke
to a non transparent value, like so
...
pointColor: "rgba(0,0,0,0)",
pointStrokeColor: "rgba(0,0,0,0)",
pointHighlightFill: "rgba(95,186,88,1)",
pointHighlightStroke: "rgba(95,186,88,1)",
...
Fiddle โ http://jsfiddle.net/p1zgp5ys/
0๐
ok, i got your issue, just set the pointDot value to true as mentioned below:
pointDot : true,
in var options
thatโs it ๐
Source:stackexchange.com