How can I make line on chart thinner?

Viewed 2435

Is there any properties to make line in line chart thicker or thinner excluding "borderWidth"? I need to make line chart with lines thinner than default and don't know how do so

1 Answers

borderWidth is the only property you can use to make it thinner or thicker, because a line literally has no thickness of its own. You can see the explanation here, along with the fiddle.

Also have a look at the documentation, there aren't a lot of options anyway to work with for line chart.

Related