Jacco van den Berg

Results 222 comments of Jacco van den Berg

In my opinion highcharts and D3 are verry good contenders, highcharts has a lot of pre build chart types for almost anything you can want as an end user and...

`import Chart from 'chart.js';` is the wrong way of importing. If you want to do it like that you need to do it like so: `import Chart from 'chart.js/auto';` Or...

I don't really know what is going on here, since it seems that chart is undefined at build but in the browser it is fine, so you can wrap your...

Might be fixed in V4 since we changed package.json and builds, can you try to specify the chart.js dependency like this: `"chart.js": "github:chartjs/Chart.js"` in your package.json and see what happens?...

Issue seems like it is fixed in V4. When I install the alpha of Chart.js `yarn add chart.js@next` it shows the chart after running `yarn build` and `yarn start`. @zumm...

> From my experience on this, I've seen things start to go haywire when the new window _obscures_ the main browser window. For example, when the main browser window is...

Top 3 issues that come to mind at the moment are: * Using `import Chart from 'chart.js';` instead of `import Chart from 'chart.js/auto';` * Using arrays for scale config *...

Tooltips seem to be working fine for me, even if I increase the canvas width to 2000

Every time I look at the test i can't seem to make them work so stopped looking at it, will give it another look Monday evening see if a fresh...