wpf-devexpress-dot-xpf-dot-charts-a6d145ae.md
Contains settings for axis labels.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public class AxisLabel :
ChartTextElement,
IAxisLabel,
ISupportFlowDirection,
IWeakEventListener,
IPatternHolder
Public Class AxisLabel
Inherits ChartTextElement
Implements IAxisLabel,
ISupportFlowDirection,
IWeakEventListener,
IPatternHolder
The following members return AxisLabel objects:
The Chart Control generates axis labels based on series data. You can also create custom axis labels to display custom text. The following help topic describes how to configure axis labels: Axis Labels.
Use the AxisBase.Label property to access an instance of the AxisLabel class.
You can specify label properties or define a data template for axis labels to change their appearance.
This example specifies the following properties for X-axis labels: Angle, Background, FontSize, FontStyle, FontWeight, Foreground, and TextPattern.
The example defines a data template for Y-axis labels. Assign this template to the ElementTemplate property to apply it to labels.
<Window.Resources>
<DataTemplate x:Key="AxisXLabelTemplate">
<Border BorderThickness="1" CornerRadius="9" Opacity="1.0">
<Border.Background>
<SolidColorBrush Color="Orange"/>
</Border.Background>
<Label Content="{Binding Path=Content}"
Padding="5,1,5,1.5"
Foreground="DarkSlateBlue"
FontSize="12" />
</Border>
</DataTemplate>
</Window.Resources>
<Grid>
<dxc:ChartControl x:Name="chartControl1" Width="540" Height="300" BorderThickness="1">
<dxc:ChartControl.Diagram>
<dxc:XYDiagram2D>
<dxc:XYDiagram2D.AxisX>
<dxc:AxisX2D Visible="True">
<dxc:AxisX2D.Label>
<dxc:AxisLabel Angle="-90"
Background="Orange"
FontSize="14"
FontStyle="Italic"
FontWeight="Bold"
Foreground="DarkSlateBlue"
TextPattern="{}{V} year"/>
</dxc:AxisX2D.Label>
</dxc:AxisX2D>
</dxc:XYDiagram2D.AxisX>
<dxc:XYDiagram2D.AxisY>
<dxc:AxisY2D>
<dxc:AxisY2D.Label>
<dxc:AxisLabel ElementTemplate="{StaticResource AxisXLabelTemplate}"/>
</dxc:AxisY2D.Label>
<dxc:AxisY2D.WholeRange>
<dxc:Range MinValue="450"/>
</dxc:AxisY2D.WholeRange>
</dxc:AxisY2D>
</dxc:XYDiagram2D.AxisY>
<!--...-->
</dxc:XYDiagram2D>
</dxc:ChartControl.Diagram>
</dxc:ChartControl>
</Grid>
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AxisLabel class.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
wpf-bind-a-range-control-to-a-chart-control/CS/GoldPrices/MainWindow.xaml#L54
<dxc:AxisX2D.Label>
<dxc:AxisLabel TextPattern="{}{A:MMMM}"/>
</dxc:AxisX2D.Label>
Show 11 items
Object DispatcherObject DependencyObject Visual UIElement FrameworkElement Control ChartElementBase ChartElement ChartTextElement AxisLabel
See Also