Blazor Gantt Chart Example - Remote Data Binding
This sample demonstrates how to bind data to the Gantt Chart using a remote service. The Gantt Chart's data source connects to remote data via the DataManager, showcasing various phases in the software design and development lifecycle.
        The SfDataManager is used to bind data from a remote service with the Gantt Chart.
        The SfDataManager acts as an interface between the service endpoint and the Tree Grid, requiring the following minimal information to interact with the service endpoint properly.
    
- SfDataManager.Url - Defines the service endpoint to fetch data.
- SfDataManager.Adaptor - Defines the adaptor option. By default, ODataAdaptor is used for remote binding.
The adaptor is responsible for processing the response and request to/from the service endpoint. The Syncfusion.Blazor.Data namespace provides predefined adaptors designed to interact with particular service endpoints. The predefined adaptors include:
- UrlAdaptor - Use this to interact with any remote service. This is the base adaptor for all remote-based adaptors.
- ODataAdaptor - Use this to interact with OData endpoints.
- ODataV4Adaptor - Use this to interact with OData V4 endpoints.
- WebApiAdaptor - Use this to interact with Web API created under OData standards.
More information on remote data binding can be found in this documentation section.