ChartControlBase.Legends Property
Returns the collection of chart legends.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v20.2.dll
Declaration
Property Value
Type | Description |
---|---|
LegendCollection | A collection of Legend objects. |
Example
To add an additional legend to a chart, add a newly created Legend object to the ChartControlBase.Legends collection.
Dock it to the required pane or chart using the Legend.DockTarget property. Then, position the legend using the Legend.HorizontalPosition and Legend.VerticalPosition properties. Assign the legend to a chart element whose legend item should be displayed in the legend, binding the Legend property of a series, an indicator, a constant line or a strip to the legend object.
Note
Note that a legend will not be visualized until it is bound to an element’s Legend property.
<dxc:ChartControl.Legends>
<dxc:Legend x:Name="indicatorLegend"
DockTarget="{Binding ElementName=indicatorPane}"
HorizontalPosition="Left"
VerticalPosition="Top"/>
</dxc:ChartControl.Legends>
<dxc:MovingAverageConvergenceDivergence ShowInLegend="True"
Name="MACD"
LegendText="MACD"
dxc:XYDiagram2D.IndicatorAxisY="{Binding ElementName=indicatorAxisY}"
dxc:XYDiagram2D.IndicatorPane="{Binding ElementName=indicatorPane}"
Legend="{Binding ElementName=indicatorLegend}"/>