All docs
V20.2
24.1
23.2
23.1
22.2
22.1
21.2
21.1
20.2
20.1
19.2
The page you are viewing does not exist in version 19.2.
19.1
The page you are viewing does not exist in version 19.1.
18.2
The page you are viewing does not exist in version 18.2.
18.1
The page you are viewing does not exist in version 18.1.
17.2
The page you are viewing does not exist in version 17.2.
A newer version of this page is available. Switch to the current version.

jQuery Sankey - PHP Service

DevExtreme provides the DevExtreme-PHP-Data extension that implements data processing on a PHP server according to the DevExtreme UI components' protocol. 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 it:

jQuery
index.js
$(function() {
    const serviceUrl = "https://url/to/my/service.php";

    $("#sankeyContainer").dxSankey({
        dataSource: DevExpress.data.AspNet.createStore({
            key: ['from', 'to'],
            loadUrl: serviceUrl
        }),
        // ...
    });
});
Angular
app.component.html
app.component.ts
app.module.ts
<dx-sankey [dataSource]="store">
    <!-- ... -->
</dx-sankey>
import { Component } from '@angular/core';
import CustomStore from 'devextreme/data/odata/custom_store';
import { createStore } from "devextreme-aspnet-data-nojquery";

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.css']
})
export class AppComponent {
    store: CustomStore;
    constructor() {
        const serviceUrl = "https://url/to/my/service.php";
        this.store = createStore({
            key: ['from', 'to'],
            loadUrl: serviceUrl
        });
    }
}
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';

import { DxSankeyModule } from 'devextreme-angular';

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        DxSankeyModule
    ],
    providers: [ ],
    bootstrap: [AppComponent]
})
export class AppModule { }
Vue
App.vue
<template>
    <DxSankey :data-source="store">
        <!-- ... -->
    </DxSankey>
</template>

<script>
import DxSankey from 'devextreme-vue/sankey';
import { createStore } from "devextreme-aspnet-data-nojquery";

const serviceUrl = "https://url/to/my/service.php";

const store = createStore({
    key: ['from', 'to'],
    loadUrl: serviceUrl
});

export default {
    components: {
        DxSankey
    },
    data() {
        return {
            store
        }
    }
}
</script>
React
App.js
import Sankey from 'devextreme-react/sankey';
import { createStore } from "devextreme-aspnet-data-nojquery";

const serviceUrl = "https://url/to/my/service.php";

const store = createStore({
    key: ['from', 'to'],
    loadUrl: serviceUrl
});

export default function App() {
    return (
        <Sankey dataSource={store}>
            {/* ... */}
        </Sankey>
    );
}