Sean Sobey
Sean Sobey
Created a [pull request](https://github.com/chartjs/chartjs-chart-financial/pull/118) for this
Hi there, Interesting update, I was not aware that `node-canvas` now supports animations. I had a quick search and I think you are right in looking to use the `afterDraw`...
Covid is still fairly rampant in my country (South Africa) and many people I know have come down with the new variant recently, which is particularly unpleasant apparently. My father...
Maybe the [animation callbacks](https://www.chartjs.org/docs/master/configuration/animations.html#animation-callbacks) are a better option? They look to provide timing information also. From what I know `requestAnimationFrame` is synced to monitor refresh rate and guaranteed to be...
Hi there! So I have not used webpack much and am not familiar with that error or why there is a need for webpack on Nodejs actually (is it not...
See the latest version (currently 3.0.6) for the updated plugin loading
Hi there, Please have a look at the plugin loading [docs](https://github.com/SeanSobey/ChartjsNodeCanvas#loading-plugins). Unfortunately, it is a bit confusing and complicated due to having to support all the different loading mechanics, so...
Hi, glad it worked. This issue is with the Chart.JS API, see [their docs](https://www.chartjs.org/docs/latest/developers/charts.html#typescript-typings) for how to resolve this, eg: ```ts declare module 'chart.js' { interface ChartTypeRegistry { candlestick: ChartTypeRegistry['candlestick']...
It's an 'issue' with `chartjs-chart-financial`, they are assuming a browser environment instead of nodejs. Looking at the [code](https://unpkg.com/[email protected]/dist/chartjs-chart-financial.js), seems to be looking for Luxon and I think you can mock...
It's difficult to provide a definitive fix with just looking at snippets of your code. The working solution will depend on many things, like whether you are using JS modules...