New to Telerik UI for ASP.NET MVCStart a free 30-day trial

Data Binding Overview

Updated on Oct 24, 2025

The Telerik UI for ASP.NET MVC OrgChart provides flexible data binding capabilities that allow you to visualize hierarchical organizational structures from various data sources. You can choose the appropriate binding method based on your application architecture and data requirements.

Data Binding Approaches

The OrgChart supports the following data binding methods:

Local Data Binding

Bind the OrgChart to a local dataset by setting the data using a client-side logic after the component initialization. This approach is optimal for:

  • Small to medium-sized organizational structures that can be loaded in memory.
  • Static hierarchical data that does not require updates.
  • Scenarios where all organizational data is available at render time.

For detailed implementation instructions, see Local Data Binding documentation.

Remote Data Binding

Connect the OrgChart to a remote endpoint using AJAX operations. This enables:

  • Dynamic loading of large organizational structures.
  • Real-time data updates from external sources.
  • 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 OrgChart, evaluate the following factors:

  • Performance—Local binding offers faster initial rendering, while remote binding provides better performance with large datasets.
  • Data volume—Large organizational structures are better handled with remote binding and enabled on-demand loading.
  • Security—Remote binding provides better control over data access through server-side validation and authorization.
  • Real-time requirements—Remote binding is essential for scenarios requiring live data updates and dynamic content refresh.
  • Maintenance—Local binding is simpler for static data, while remote binding offers more flexibility for evolving data requirements.

See Also