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



Gets or sets a value indicating whether disable browser cache.

Syntax

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

Example

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

See Also