This sample demonstrates the way of binding data to Gantt chart with remote service. The Gantt chart data source is bound to remote data using DataManager. This sample data helps to visualize the various phases of Barley harvesting.
The dataSource
property in Gantt chart can be assigned with the instance of
DataManager
to bind remote data.
The DataManager, which will act as an interface between the service endpoint and the Gantt chart, will require
the below minimal information to interact with service endpoint properly.
DataManager->url
- Defines the service endpoint to fetch dataDataManager->adaptor
- Defines the adaptor option. By default, ODataAdaptor is used for remote
binding.@syncfusion/ej2-data
package provides some predefined adaptors which are designed to interact with particular service endpoints. They
are,
UrlAdaptor
- Use this to interact any remote services. 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.WebMethodAdaptor
- Use this to interact with web methods.DataManager
to the
dataSource
property.
More information on the data binding can be found in this documentation section.
Gantt component features are segregated into individual feature-wise modules. To use a selection feature, inject the
Selection
module.