Gets or sets the annotation format for the axis.

Namespace:  C1.Win.C1Chart
Assembly:  C1.Win.C1Chart.2 (in C1.Win.C1Chart.2.dll)

Syntax

C#
[XmlAttributeAttribute]
[RefreshPropertiesAttribute(RefreshProperties.Repaint)]
public virtual FormatEnum AnnoFormat { get; set; }
Visual Basic
<XmlAttributeAttribute> _
<RefreshPropertiesAttribute(RefreshProperties.Repaint)> _
Public Overridable Property AnnoFormat As FormatEnum
	Get
	Set

Remarks

The AnnoFormat property allow specification of numeric and time formats using enumerated values.

For numeric values, each of the enumerations specify formatting similar to that specified by the .Net NumberFormatInfo, including Currency, General, Exponential, Percentage, Roundtrip and Hexadecimal. NumericManual is used in conjunction with the AnnoFormatString property to specify a custom format string.

For date/time values, each of the enumerations specify formatting similar to that specified by the .Net DateTimeFormatInfo class, including combinations of long and short dates and times, and universal time representations. DateManual is used in conjunction with the AnnoFormatString property to specify a custom format string.

See Also