MindFusion.Charting Programmer's Guide

AxisSettings.DataFormat Property

See Also
 





Gets or sets the format of data.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public DataFormat DataFormat { get; set; }

Visual Basic  Copy Code

Public Property DataFormat As DataFormat

 Property Value

One of the DataFormat enumeration values. Default value is DataFormat.Auto.

 Remarks

Use the property to specify whether your data is DateTime values or numbers. When the property is set to Auto, the control tries to convert all data to DateTime objects using the standard .NET DateTimeConverter. If any of the data values fails to be converted, the data is treated as numbers.

 See Also