Class ChartNumberFormatter
This chart formatter allows the chart to format numbers in human readable or scientific form.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public sealed class ChartNumberFormatter : Object, ICustomFormatter, IFormatProvider
Constructors
ChartNumberFormatter()
Initializes a new instance of the ChartNumberFormatter class.
Declaration
public ChartNumberFormatter()
ChartNumberFormatter(IFormatProvider)
Initializes a new instance of the ChartNumberFormatter class.
Declaration
public ChartNumberFormatter(IFormatProvider fallbackFormatProvider)
Parameters
System.IFormatProvider
fallbackFormatProvider
An System.IFormatProvider the custom format provider should fall back to in case it cannot convert the value. |
ChartNumberFormatter(IFormatProvider, String)
Initializes a new instance of the ChartNumberFormatter class.
Declaration
public ChartNumberFormatter(IFormatProvider fallbackFormatProvider, string defaultFormat)
Parameters
System.IFormatProvider
fallbackFormatProvider
An System.IFormatProvider the custom format provider should fall back to in case it cannot convert the value. |
System.String
defaultFormat
The default format that is to be used in case no specific format is defined. |
ChartNumberFormatter(String)
Initializes a new instance of the ChartNumberFormatter class.
Declaration
public ChartNumberFormatter(string defaultFormat)
Parameters
System.String
defaultFormat
The default format that is to be used in case no specific format is defined. |
Methods
Format(String, Object, IFormatProvider)
Converts the value of a specified object to an equivalent string representation using specified format and culture-specific formatting information.
Declaration
public string Format(string format, object arg, IFormatProvider formatProvider)
Parameters
System.String
format
A format string containing formatting specifications. |
System.Object
arg
An object to format. |
System.IFormatProvider
formatProvider
An System.IFormatProvider object that supplies format information about the current instance. |
Returns
System.String
The string representation of the value of |
GetFormat(Type)
Returns an object that provides formatting services for the specified type.
Declaration
public object GetFormat(Type formatType)
Parameters
System.Type
formatType
An object that specifies the type of format object to return. |
Returns
System.Object
An instance of the object specified by |