diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/description.md b/apps/demos/Demos/Charts/ServerSideDataProcessing/description.md index 5ace5d58f692..4350bdbdf8a5 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/description.md +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/description.md @@ -1,7 +1,7 @@ -DevExtreme Chart supports remote data processing. In this demo, the component loads weather data for a specified month from an ASP.NET backend service. When you change a month in the drop down, the Chart component sends a new query to update displayed data. +DevExtreme Chart supports remote data processing. In this demo, the component loads weather data for the specified month from an ASP.NET backend service. When you change the month value via the dropdown, our Chart component sends a new query to update displayed data. -To bind data from a remote source, the demo implements a [CustomStore](/Documentation/ApiReference/Data_Layer/CustomStore/) (within a [DataSource](/Documentation/ApiReference/Data_Layer/DataSource/) object) and fetches data using the [load](/Documentation/ApiReference/Data_Layer/CustomStore/Configuration/#load) method. To process data on the server, the ASP.NET backend service is configured to accept processing operations in each request. For backend implementation details, refer to **TemperatureDataController.cs** in the ASP.NET Core version of this demo: [Server-Side Data Processing - ASP.NET Core Charts](https://demos.devexpress.com/AspNetCore/Demo/Charts/ServerSideDataProcessing). +To bind data from a remote source, this demo implements a [CustomStore](/Documentation/ApiReference/Data_Layer/CustomStore/) (within a [DataSource](/Documentation/ApiReference/Data_Layer/DataSource/) object) and fetches data using the [load](/Documentation/ApiReference/Data_Layer/CustomStore/Configuration/#load) method. To process data on the server, the ASP.NET backend service is configured to accept processing operations in each request. For backend implementation details, refer to **TemperatureDataController.cs** in the ASP.NET Core version of this demo: [Server-Side Data Processing - ASP.NET Core Charts](https://demos.devexpress.com/AspNetCore/Demo/Charts/ServerSideDataProcessing). You can shape data within the **DataSource** as needed (for instance, apply a [filter](/Documentation/ApiReference/Data_Layer/DataSource/Configuration/#filter)). Disable the [paginate](/Documentation/ApiReference/Data_Layer/DataSource/Configuration/#paginate) property to prevent data partitioning.