Vinith Vemana
Vinith Vemana

Reputation: 51

Is there anyway to remove the dots for points from angularjs charts

Can we remove these dots for points so that it looks like a straight line. Although i can see that there is an option in charts.js unable to implement here

Upvotes: 0

Views: 953

Answers (1)

Ahmer Khan
Ahmer Khan

Reputation: 767

You can do this with

options: { elements: { point: { radius: 0 } } }

Upvotes: 3

Related Questions