dotnetCHARTING Send comments on this topic.
ShowDateInTitle Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : ShowDateInTitle Property



Gets or sets a value which indicates whether specified dates are shown in the title.

Syntax

Visual Basic (Declaration) 
Public Property ShowDateInTitle As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Chart
Dim value As Boolean
 
instance.ShowDateInTitle = value
 
value = instance.ShowDateInTitle
C# 
public bool ShowDateInTitle {get; set;}
C++/CLI 
public:
property bool ShowDateInTitle {
   bool get();
   void set (bool value);
}

Example

C#Copy Code
Chart.ShowDateInTitle = true; 
Visual BasicCopy Code
Chart.ShowDateInTitle = true

Remarks

Applicable when Chart.DefaultSeries.Start/EndDate or Chart.Series.Start/EndDate are set.

See Also