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

    Specifies Sankey diagram tooltip options.

    Namespace: DevExpress.XtraCharts.Sankey

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

    NuGet Package: DevExpress.Win.Charts

    Declaration

    public SankeyToolTipOptions ToolTipOptions { get; }

    Property Value

    Type Description
    SankeyToolTipOptions

    Contains Sankey diagram tooltip options.

    Remarks

    Sankey diagram with default settings shows tooltips. The following code disables tooltips for SankeyLinks and SankeyNodes:

    using DevExpress.Utils;
    //...
    sankeyDiagramControl1.ToolTipOptions.LinkToolTipEnabled = DefaultBoolean.False;
    sankeyDiagramControl1.ToolTipOptions.NodeToolTipEnabled = DefaultBoolean.False;
    

    Refer to the following help topic for more information on the tooltip customization: SankeyDiagramControl.ToolTipController.

    See Also