Akihiko Kusanagi

Results 20 comments of Akihiko Kusanagi

Though you can manually set `ticks.min` and `ticks.max` for y axis using visible data only as described in #78, it might be useful to have an option for it.

You shouldn't set the refresh interval to a too small value, in particular, less than the display refresh interval (1000/60ms) because the chart update is a bit heavy process. If...

It seems that chartjs-plugin-zoom 0.x doesn't work well with the 'time' scale, but 1.0.0 fixes it. Try to use chartjs-plugin-zoom 1.0.0 with Chart.js 3.x and chartjs-plugin-streaming 2.x.

Try this: ```html const myChart = new Chart(document.getElementById('myChart'), { type: 'line', data: { datasets: [ { data: [ {x: Date.now() - 4000, y: Math.random()}, {x: Date.now() - 3000, y: Math.random()},...

What versions of Chart.js and this plugin are you using? Currently, the followings are supported. - chartjs-plugin-streaming 2.x.x for Chart.js 3.x.x - chartjs-plugin-streaming 1.8.0 for Chart.js 2.7.x and 2.8.x -...

Thank you for sharing your experience with Chart.js and this plugin. I agree that samples for integration with a framework using high-frequency data will be helpful for other users. It...

Can you share your working code using CodePen or JSFiddle?

I think the `delay` property can be used for this purpose. Try to change the value at https://nagix.github.io/chartjs-plugin-streaming/samples/interactions.html and see how it works. For the `offset` property, it is mainly...

Let's assume you have the external database that stores the recorded stream, and the function `getData (start, end)` returns the array that holds partial data for the specified period. You...

Thank you for reporting this. Unfortunately, I'm not able to reproduce the problem. Can you share jsfiddle, codepen or similar?