Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

AxisLabelStyle Class

Stores the appearance settings of axis labels.

Namespace: DevExpress.Maui.Charts

Assembly: DevExpress.Maui.Charts.dll

NuGet Package: DevExpress.Maui.Charts

#Declaration

C#
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>
See Also