DevExtreme Angular - Overview

A label is an element that accompanies a node and displays the node's title or custom data.

Sankey - Node Labels

Options that configure node labels are collected in the label object. Refer to its description in the API reference and to other articles in this section for information on node label settings.

jQuery
JavaScript
$(function() {
    $("#sankeyContainer").dxSankey({
        // ...
        label: {
            // Settings for all node labels
        }
    });
});
Angular
HTML
TypeScript
<dx-sankey ... >
    <dxo-label ... >
        <!-- Settings for all node labels -->
    </dxo-label>
</dx-sankey>
import { DxSankeyModule } from "devextreme-angular";
// ...
export class AppComponent {
    // ...
}
@NgModule({
    imports: [
        // ...
        DxSankeyModule
    ],
    // ...
})
See Also