dotnetCHARTING Send comments on this topic.
StartDate Property
See Also  Example
dotnetCHARTING Namespace > Series Class : StartDate Property


The starting date used with SqlStatement to query filtered data from a database.

Syntax

Visual Basic (Declaration) 
Public Property StartDate As Date
Visual Basic (Usage)Copy Code
Dim instance As Series
Dim value As Date
 
instance.StartDate = value
 
value = instance.StartDate
C# 
public DateTime StartDate {get; set;}

Example

C#Copy Code
Chart.Series.StartDate = new DateTime(2004,12,10);
    
Visual BasicCopy Code
Chart.Series.StartDate = New DateTime(2004,12,10)

Remarks

This property affects the date listed in the title when Chart.ShowDateInTitle is used, it is also used for the SqlStatement property where the #StartDate# token is replaced with the value set to this property.

See Also

© 2010 All Rights Reserved.