wpf-devexpress-dot-xpf-dot-charts-dot-sankey-c786092e.md
Contains Sankey tooltip text options.
Namespace : DevExpress.Xpf.Charts.Sankey
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public class SankeyToolTipInfo :
NotifyPropertyChangedObject
Public Class SankeyToolTipInfo
Inherits NotifyPropertyChangedObject
The following members return SankeyToolTipInfo objects:
A SankeyToolTipInfo object is the DataContext for the SankeyDiagramControl.NodeToolTipContentTemplate and SankeyDiagramControl.LinkToolTipContentTemplate.
The following example uses the SankeyToolTipInfo.SourceObject and SankeyToolTipInfo.ToolTipText properties to define custom content for Sankey links:
<dxsa:SankeyDiagramControl.LinkToolTipContentTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding Path=ToolTipText}" />
<TextBlock HorizontalAlignment="Center" Text="{Binding Path=SourceObject.TotalWeight}"/>
</StackPanel>
</DataTemplate>
</dxsa:SankeyDiagramControl.LinkToolTipContentTemplate>
Result:
Object DevExpress.Xpf.Charts.NotifyPropertyChangedObject SankeyToolTipInfo
See Also