Evert Timberg

Results 87 comments of Evert Timberg

Fair, if we aim to get a 3.9 out quickly this won't have to sit around for a while

The tooltip could also be made into HTML and thus made accessible. Beyond that, it may be possible to give some fallback data for the canvas but I don't have...

This feels like it might be an optimization of the decimation plugin. Right now that plugin is the best way to achieve the reduction in points that you're looking for

This is a tough one because we'd have to interpolate the dataset below which becomes quite complicated once Bezier curves are involved (i.e. tension !== 0). It feels like a...

I think the [datalabels](https://github.com/chartjs/chartjs-plugin-datalabels) plugin is close to what you want

ah, that will require a custom plugin for the form side of things.

@nanospeck the legend code is in https://github.com/chartjs/Chart.js/blob/master/src/core/core.legend.js Off the top of my head, I'm not sure what the best thing to start with is. You'd need changes to `fit` which...

One idea would be to factor out a `drawLabel` function. The current implementation would do what we currently do. Then only that function could be overridden. The challenge would be...

If anyone is wanting to implement this, the idea is to replace [these](https://github.com/chartjs/Chart.js/blob/master/src/core/core.scale.js#L699-L724) lines with a separate function that could be overridden to provide this behaviour. Shouldn't be too hard...

What I think happens is that the legend causes the type of the scale to be any of the scales. Since the `RadialLinearScaleOptions` don't have a title, this error appears....