Hi
I'm using kendo stock chart to plot the temperature data of each device. Let's say If I want to plot 5 devices data, I push data to kendo DataSource Object (format of data point: {device_id: <temperature, date: <date>}) as soon as I get data from the device. Initially, I had a limit of 5 devices per a chart but again got a requirement of putting 128 devices. At any point, I used to maintain 10 data points on the chart by removing older data points. But I have increased the limit to 100 data points when plotting 128 device data. After making this change the browser was unresponsive and finally crashes.
1. Is this because of the continuous refreshing of the chart (after pushing the data point, I update the chart using the refresh method)?
2. Or stock chart could not handle more data points?
How to handle updating the chart with continuous data from device efficiently. Could someone provide me with the best practice to do this?