SankeyLinearLayoutAlgorithm Class
Contains Sankey linear layout algorithm settings.
Namespace: DevExpress.Xpf.Charts.Sankey
Assembly: DevExpress.Xpf.Charts.v24.1.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
public class SankeyLinearLayoutAlgorithm :
SankeyLayoutAlgorithmBase,
ISankeyLinearLayoutAlgorithm,
ISankeyLayoutAlgorithm
Remarks
You can use the predefined SankeyLinearLayoutAlgorithm
. The SankeyLinearLayoutAlgorithm.NodeAlignment property specifies the node alignment.
The following example aligns nodes to the top of the SankeyDiagramControl:
<dxsa:SankeyDiagramControl x:Name="sankeyDiagramControl1" DataSource="{Binding Data}"
SourceDataMember="Source"
TargetDataMember="Target"
WeightDataMember="Value">
<!--...-->
<dxsa:SankeyDiagramControl.LayoutAlgorithm>
<dxsa:SankeyLinearLayoutAlgorithm NodeAlignment="Far"/>
</dxsa:SankeyDiagramControl.LayoutAlgorithm>
</dxsa:SankeyDiagramControl>
Inheritance
Object
DispatcherObject
DependencyObject
Freezable
ChartDependencyObject
SankeyLayoutAlgorithmBase
SankeyLinearLayoutAlgorithm
See Also
xref:DevExpress.Xpf.Charts.Sankey.SankeyLayoutAlgorithmBase