maui-devexpress-dot-maui-dot-charts-dot-axisbase-260c5d3b.md
Gets or sets an object that provides custom string representations of axis label values to labels. This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public IAxisLabelTextFormatter LabelTextFormatter { get; set; }
| Type | Description |
|---|---|
| IAxisLabelTextFormatter |
The object that provides custom string representations of axis label values to labels.
|
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>
public class AxisLabelTextFormatter : IAxisLabelTextFormatter {
// Accepts an axis value that should be formatted.
public string Format(object value) {
if (value is DateTime dateTime) return dateTime.ToString("MM/dd/yy");
return String.Empty;
}
}
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. This is a bindable property.
| |
|
An interface that should be implemented by a class that defines custom labels for an axis.
|
See Also