Skip to main content

AxisBase.LabelTextFormatter Property

Gets or sets an object that provides custom string representations of axis label values to labels.

Namespace: DevExpress.XamarinForms.Charts

Assembly: DevExpress.XamarinForms.Charts.dll

NuGet Package: DevExpress.XamarinForms.Charts

Declaration

public IAxisLabelTextFormatter LabelTextFormatter { get; set; }

Property Value

Type Description
IAxisLabelTextFormatter

The object that provides custom string representations of axis label values to labels.

Example

This example illustrates how to use the text formatter to assign a custom text to axis labels:

<dxc:DateTimeAxisX>
    <dxc:DateTimeAxisX.LabelTextFormatter>
            <local:AxisLabelTextFormatter/>
    </dxc:DateTimeAxisX.LabelTextFormatter>
</dxc:DateTimeAxisX>

The code above uses the following classes and members:

Symbol

Description

AxisBase.LabelTextFormatter

Gets or sets an object that provides custom string representations of axis label values to labels.

IAxisLabelTextFormatter

An interface that should be implemented by a class that defines custom labels for an axis.

See Also