Skip to main content
All docs
V25.1
  • SankeyDiagramControl.Titles Property

    Provides access to the diagram’s title collection.

    Namespace: DevExpress.XtraCharts.Sankey

    Assembly: DevExpress.XtraCharts.v25.1.UI.dll

    NuGet Package: DevExpress.Win.Charts

    Declaration

    public SankeyTitleCollection Titles { get; }

    Property Value

    Type Description
    SankeyTitleCollection

    A collection of titles.

    Remarks

    sankey diagram elements

    The code below adds a title to a Sankey Diagram:

    sankeyDiagramControl1.Titles.Add(new SankeyTitle { Text = "Export/Import" });
    
    See Also