Evert Timberg

Results 87 comments of Evert Timberg

This seems like a great change to make

It seems the problem here is that `minBarLength` always increases the size for 0 on the value axis. In https://jsfiddle.net/174aquk2/ it should apply from the base value to ensure that...

This is much closer with v3.7.1 but still requires one extra setting to manually set the base value of the dataset to the minimum y axis value. https://jsfiddle.net/2bw8gv0y/

The segment interface does support the `backgroundColor` property. This is documented in https://www.chartjs.org/docs/latest/charts/line.html#segment In that sample above, `backgroundColor` is set to the same function as `borderColor` and `fill` is set...

This is likely because separate animations are used under the hood for each dataset. I tagged this as a performance problem since making things faster will reduce the likelihood that...

I feel like this is currently working as designed. When a specific tooltip alignment is set, the tooltip maintains that even if it is not the optimal arrangement. I'm actually...

@rferreira98 do you have a picture of what you want the chart to look like?

If I understand correct, you want multiple items to be group to a single legend item and have all of them toggle at once. It is possible to build this...

I don't think there's an easy solution to this. Doing the drawing is likely possible using the same logic that determines which corners to apply rounding to. I think the...

This is interesting. The reason it happens is because `CartesianScaleOptions` is more of an internal type. For example, the category options are: ```ts export type CategoryScaleOptions = CartesianScaleOptions & {...