You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I am trying to show all labels in a chart but I cannot achieve this. In the chart.js documentations there is this value called "autoSkip" to show all labels no matter the window size.
Describe the solution you'd like
It would be awesome to implement this feature to use it like this: var barChartOptions = new BarChartOptions { Scales = new() { Y = new() { Ticks = new() { AutoSkip = false } }, } };
Additional context
For additional information here is the link to the documentation Chart.js
The text was updated successfully, but these errors were encountered:
So it seems we're missing an entire Ticks option from the ChartAxis. We could either add it in 1.3 as it seems fairly simple and should not break an existing API. Or move it to 1.4 milestone.
Is your feature request related to a problem? Please describe.
I am trying to show all labels in a chart but I cannot achieve this. In the chart.js documentations there is this value called "autoSkip" to show all labels no matter the window size.
Describe the solution you'd like
It would be awesome to implement this feature to use it like this:
var barChartOptions = new BarChartOptions { Scales = new() { Y = new() { Ticks = new() { AutoSkip = false } }, } };
Additional context
For additional information here is the link to the documentation
Chart.js
The text was updated successfully, but these errors were encountered: