Example of Spline updating each second in ASP.NET Core Chart Control
This sample demonstrates how to add and remove data in a spline chart, allowing modification of the data at set intervals.
DEMO
SOURCE
In this example, you can see how to render and configure a spline chart to display data that updates every second using the AddPoint
method, with old data being removed using the RemovePoint
method. The X-axis represents the time at which the data is added, while the Y-axis displays the data values.
More information on the spline series can be found in this documentation section.