Blazor Chart with Local Data Example.
This sample demonstrates the plotting of local data in a stock price analysis of two products over a specified time period.
The Charts control supports flexible data binding through the DataSource property, which accepts either a list of objects or a DataManager instance.
In this example:
- A list of objects is assigned as the data source to the Charts control
- The chart supports binding to IEnumerable, IQueryable, and ObservableCollection data sources
- Local data binding provides efficient data handling for client-side scenarios
More information about local data binding can be found in this documentation section.