Skip to main content
A newer version of this page is available. .

AxisLabelStyle Class

Stores the appearance settings of axis labels.

Namespace: DevExpress.XamarinForms.Charts

Assembly: DevExpress.XamarinForms.Charts.dll

Declaration

public class AxisLabelStyle :
    TextElementStyleBase

The following members return AxisLabelStyle objects:

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>

Inheritance

Object
Xamarin.Forms.BindableObject
See Also