Data Binding Overview
The Telerik UI for ASP.NET MVC Chart Wizard provides flexible data binding capabilities that allow you to create and configure charts with dynamic data. You can choose the appropriate binding method based on your application architecture and data requirements.
Data Binding Approaches
The Chart Wizard supports the following data binding methods:
Local Data Binding
Bind the Chart Wizard to a local dataset by passing an arbitrary model directly within the boundaries of the component. This approach is optimal for:
- Small to medium-sized datasets that can be loaded in memory.
- Static data that does not require frequent updates.
- Scenarios where all chart data is available at render time.
For detailed implementation instructions, see Local Data Binding.
Remote Data Binding
Connect the Chart Wizard to a remote endpoint using AJAX operations. This enables:
- Dynamic data loading from external sources.
- Real-time chart updates with fresh data.
- Improved performance with large datasets through on-demand data loading.
For more information and examples, refer to the Remote Data Binding documentation.
Key Considerations
When selecting a data binding approach for the Chart Wizard, evaluate the following factors:
- Performance—Local binding offers faster initial rendering, while remote binding provides better performance with large datasets through on-demand loading.
- Data volume