Angular Sankey - Overview

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

Sankey - Node Labels

Properties 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.

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