MindFusion.Charting Programmer's Guide

AxisSettings.StartDateTime Property

See Also
 





Specifies the start DateTime value.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public DateTime StartDateTime { get; set; }

Visual Basic  Copy Code

Public Property StartDateTime As DateTime

 Property Value

A value of type .NET DateTime structure.

 Remarks

The StartDateTime property specifies the smallest DateTime value at the axis. The biggest one is set with EndDateTime. The size of the intervals between them is set with TimeSpan.

Set the DataFormat property to DateTime. Use DateTimeFormat to set the particular DateTime format.

Default value for the StartDateTime property is DateTime.MinValue.

 See Also