2D Chart for WinForms | ComponentOne
C1.Win.C1Chart.4.5.2 Assembly / C1.Win.C1Chart Namespace / Axis Class / AnnoFormatString Property

In This Topic
    AnnoFormatString Property
    In This Topic
    Gets or sets the annotation format string used with manual formats.
    Syntax
    'Declaration
     
    Public Overridable Property AnnoFormatString As System.String
    public virtual System.string AnnoFormatString {get; set;}
    Remarks

    Only used when AnnoFormat property is NumericManual or DateManual. The AnnoFormatString property specifies a custom string for formatting the annotations along the axis.

    When the AnnoFormat property is NumericManual, the AnnoFormatString property can be set to format strings as described by the .Net double.ToString(AnnoFormatString) method call. Custom numeric format strings are described in detail by the .Net documentation under “Custom Numeric Format Strings”. If the AnnoFormatString property is empty, then “g” or General is used.

    When the AnnoFormat property is DateManual, the AnnoFormatString property can be set to format string as described by the .Net DateTime.ToString(AnnoFormatSTring) method call. Custom DateTime format strings are described in detail by the .Net documentation under “Date and Time Format Strings”. If the AnnoFormatString property is empty, then C1Chart selects a format string appropriate for the time span defined by the axis maximum and minimum values.

    See Also