AxisLabelBase.Style Property
Gets or sets axis label appearance settings.
Namespace: DevExpress.XamarinForms.Charts
Assembly: DevExpress.XamarinForms.Charts.dll
NuGet Package: DevExpress.XamarinForms.Charts
Declaration
public AxisLabelStyle Style { get; set; }
Property Value
Type | Description |
---|---|
AxisLabelStyle | An AxisLabelStyle object that stores axis label appearance settings. |
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