Skip to main content
All docs
V25.1
  • SankeySelectedItemsChangingEventArgs(IList<SankeyNode>, IList<SankeyLink>, IList<SankeyNode>, IList<SankeyLink>, SelectedItemsChangedAction) Constructor

    Initializes a new instance of the SankeySelectedItemsChangingEventArgs class with specified settings.

    Namespace: DevExpress.XtraCharts.Sankey

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.Charts

    Declaration

    public SankeySelectedItemsChangingEventArgs(
        IList<SankeyNode> oldNodes,
        IList<SankeyLink> oldLinks,
        IList<SankeyNode> newNodes,
        IList<SankeyLink> newLinks,
        SelectedItemsChangedAction action
    )

    Parameters

    Name Type Description
    oldNodes IList<SankeyNode>

    Previously selected Sankey nodes.

    oldLinks IList<SankeyLink>

    Previously selected Sankey links.

    newNodes IList<SankeyNode>

    Newly selected Sankey nodes.

    newLinks IList<SankeyLink>

    Newly selected Sankey links.

    action SelectedItemsChangedAction

    The action that describes changes in the SelectedItems collection.

    See Also