-
Notifications
You must be signed in to change notification settings - Fork 665
Charts: Update Server-Side Demo Desc. (#32257 & #32337) #32338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Charts: Update Server-Side Demo Desc. (#32257 & #32337) #32338
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request updates the demo description for the Charts Server-Side Data Processing demo, consolidating changes from PRs #32257 and #32337. The updates modernize the technical content to reflect current implementation (CustomStore instead of ODataStore) and update version references (.NET 8+ instead of .NET 6+ and Template Kit instead of Solution Wizard).
Changes:
- Rewrote the introduction to describe ASP.NET backend service with CustomStore implementation instead of OData service
- Updated technical guidance to reference CustomStore and load method, with link to ASP.NET Core demo for backend implementation details
- Updated .NET version from 6+ to 8+ and changed "Solution Wizard" to "Template Kit" in the promotional content
apps/demos/Demos/Charts/ServerSideDataProcessing/description.md
Outdated
Show resolved
Hide resolved
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Arman Boyakhchyan <arman.boyakhchyan@devexpress.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
| In many cases, you need to process data on the server before a chart displays it. The Chart component supports this scenario. | ||
|
|
||
| In this demo, the data source of the Chart loads weather data for a selected month from an OData service. Each time you select a different month in the drop-down menu, the data source sends a new query to the service. To implement this functionality, assign a [DataSource](/Documentation/ApiReference/Data_Layer/DataSource/) object to the Chart's [dataSource](/Documentation/ApiReference/UI_Components/dxChart/Configuration/#dataSource) property. | ||
| 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. |
Copilot
AI
Jan 29, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The term "dropdown" should be "drop-down" (with a hyphen) to maintain consistency with other demo descriptions in the codebase. All other Charts demo descriptions use "drop-down" (e.g., Area/description.md:1, ClientSideDataProcessing/description.md:3, Line/description.md:1).
Cherry-pick of #32257 and #32337