Interface
ILabelFormatter

Defines the contract for formatting labels in chart elements.

Definition

Namespace:Telerik.Maui.Controls.Compatibility.Chart

Assembly:Telerik.Maui.Controls.Compatibility.dll

Syntax:

cs-api-definition
public interface ILabelFormatter

Properties

ConvertionContext

Gets the context object that provides additional information for the conversion process.

Declaration

cs-api-definition
object ConvertionContext { get; }

Property Value

object

The context object used during conversion.

ValueType

Gets the type of values that this formatter can process.

Declaration

cs-api-definition
Type ValueType { get; }

Property Value

Type

The type of values that can be formatted.

Methods

FormatValue(object)

Formats the specified value into a string representation.

Declaration

cs-api-definition
string FormatValue(object value)

Parameters

value

object

The value to format.

Returns

string

A string representation of the formatted value.