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



Gets or sets a TimeSpan object that determines how often the page containing this chart will automatically reload.

Syntax

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

Example

C#Copy Code
//Reload the page each one minute 
Chart.ReloadPeriod = new TimeSpan(0,1,0) 
Visual BasicCopy Code
'Reload the page each one minute
Chart.ReloadPeriod = new TimeSpan(0,1,0)

See Also