MindFusion.Charting Programmer's Guide

AxisSettings.EndDateTime Property

See Also
 





Gets or sets the value of the last DateTime interval at the axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public DateTime EndDateTime { get; set; }

Visual Basic  Copy Code

Public Property EndDateTime As DateTime

 Property Value

A value of type .NET DateTime structure. Default is DateTime.MinValue.

 Remarks

The property is considered only when the DataFormat is set to DataFormat is set to DateTime. The smallest DateTime value is set with StartDateTime. The intervals among them are calculated through the TimeSpan property.

StartDateTime, EndDateTime and TimeSpan properties specify the auto scale for data given as DateTime values. If they are not set, the control calculates them automatically.

 See Also