Reputation: 1136
I have a highcharts "area" graph, and for every point on that graph i want to add a dashed border on the colored area all the way to the bottom.
Upvotes: 1
Views: 2120
Reputation: 4916
To add dashed borders to your area graph, mention the dashstyle
in which each series will be represented in.
Series:[{
name: 'USA',
data: [null, null, 10421, 10358, 10295, 10104 ],
dashStyle: 'longdash'
}]
Jsfiddle is here.
Upvotes: 3