Reputation: 603
When using Chart.js i cant find a way to evenly scale the Y axis. Overiding and using manual scaling( scaleOverride: true ) for every chart is not really an option since there are alot of them and they have different data. Some one have an idea how to fix the scaling of the data?
Sometimes the scaling gets uneven depending on the data.
Upvotes: 0
Views: 332
Reputation: 41065
You can set the options globally - this will apply to every chart instance. For instance
Chart.defaults.global.scaleOverride = true;
...
Upvotes: 1