JavaScript/jQuery Chart - PHP Service

DevExtreme provides the DevExtreme-PHP-Data extension that implements data processing on a PHP server according to the protocol the Chart uses. To access the server from the client, configure the CustomStore as described in the Custom Sources article or use the createStore method. This method is a part of the DevExtreme.AspNet.Data extension. The following code shows how to use this method.

index.js
  • $(function() {
  • const serviceUrl = "https://url/to/my/service.php";
  •  
  • $("#chartContainer").dxChart({
  • dataSource: DevExpress.data.AspNet.createStore({
  • key: 'ID',
  • loadUrl: serviceUrl
  • }),
  • // ...
  • });
  • });