AxisLabelBase.Style Property
In This Article
Gets or sets axis label appearance settings. This is a bindable property.
Namespace: DevExpress.Maui.Charts
Assembly: DevExpress.Maui.Charts.dll
NuGet Package: DevExpress.Maui.Charts
#Declaration
C#
public AxisLabelStyle Style { get; set; }
#Property Value
Type | Description |
---|---|
Axis |
An Axis |
#Example
This example shows how to change axis labels’ font color and size. To do this, assign the AxisLabelStyle object with the specified text appearance settings to the Style
property. Use the AxisLabelStyle.TextStyle property to access the TextStyle object and specify this object’s Color and Size properties to set the font color and size of axis labels.
<dxc:ChartView.AxisY>
<dxc:NumericAxisY>
<dxc:NumericAxisY.Label>
<dxc:AxisLabel>
<dxc:AxisLabel.Style>
<dxc:AxisLabelStyle>
<dxc:AxisLabelStyle.TextStyle>
<dxc:TextStyle Color="DarkGray" Size="16"/>
</dxc:AxisLabelStyle.TextStyle>
</dxc:AxisLabelStyle>
</dxc:AxisLabel.Style>
</dxc:AxisLabel>
</dxc:NumericAxisY.Label>
</dxc:NumericAxisY>
</dxc:ChartView.AxisY>
See Also