Akihiko Kusanagi

Results 20 comments of Akihiko Kusanagi

@yusufozturk [chartjs-plugin-streaming](https://nagix.github.io/chartjs-plugin-streaming) may fit your use case as ticks move together with lines and users will easily know it's realtime.

For empty tooltip squares, set `borderDash`, `pointStyle`, `pointHoverBorderColor`, `pointHoverBackgroundColor` and `pointBackgroundColor` to `undefined` instead of `null`, or remove all of them from the config.

@xiaoyao9184 This is a sample of angular-chart.js + chartjs-plugin-streaming with `chart-data`: https://jsfiddle.net/nagix/an1zpcsa/ If you have any question, please let me know.

I will update the build system, workflows and documentation, add TypeScript support, improve ES module support, then release v1 😉

I'm planning to include a separate ES module in the v1 release.

Thank you for reporting the issue, but I cannot reproduce this issue. I set `Chart.defaults.global.plugins.colorschemes.scheme` to `'brewer.RdPu4'` for example at the beginning, and it is applied to all the charts....

Please share your `onRefresh` code.

Try to call `chart.update()` after populating the data as described in [README](https://github.com/nagix/chartjs-plugin-streaming#push-model-listening-based). ``` chart.update('quiet'); // for v2.x with Chart.js 3.x ``` ``` chart.update({preservation: true}); // for v1.x with Chart.js 2.x...

`this.setState` is being called in your socket listener, and it initiates a re-rendering of the component, but it seems that the charts is not updated. How and from where your...

I'm not sure how the graph would be animated to the right without reversing the axis. Isn't [this sample](https://nagix.github.io/chartjs-plugin-streaming/samples/reverse.html) what you expect?