ComponentOne Reports for WPF
C1.C1Report.CustomFields Namespace / Chart Class / FormatY Property

In This Topic
    FormatY Property
    In This Topic
    Gets or sets the annotation format for the Y axis.
    Syntax
    'Declaration
     
    Public Property FormatY As String
    public string FormatY {get; set;}
    Remarks

    This property controls the format used to display values along the Y axis of the chart.

    The value is a regular .NET format string that is used to format numeric or System.DateTime values. For details on how to specify format strings, see the System.IFormattable interface.

    Typical values used for formatting numeric values are "F2" (floating point with two decimals), "C" (currency), and "#,##0.00" (thousand-separated values with two decimals).

    See also C1.Win.C1Chart.Axis.AnnoFormat.
    See Also