Interface ILabelFormatter
Defines the contract for formatting labels in chart elements.
Namespace: Telerik.Maui.Controls.Compatibility.Chart
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public interface ILabelFormatter
Properties
ConvertionContext
Gets the context object that provides additional information for the conversion process.
Declaration
object ConvertionContext { get; }
Property Value
System.Object
The context object used during conversion. |
ValueType
Gets the type of values that this formatter can process.
Declaration
Type ValueType { get; }
Property Value
System.Type
The type of values that can be formatted. |
Methods
FormatValue(Object)
Formats the specified value into a string representation.
Declaration
string FormatValue(object value)
Parameters
System.Object
value
The value to format. |
Returns
System.String
A string representation of the formatted value. |