Chart.EnableViewState Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a flag that determines whether state management is enabled.
public:
virtual property bool EnableViewState { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)]
public override bool EnableViewState { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)>]
member this.EnableViewState : bool with get, set
Public Overrides Property EnableViewState As Boolean
Property Value
true
if state management is enabled; otherwise, false
. The default value is false
.
- Attributes
Remarks
Set this property to true
to enable state management for the Chart control.
The view state that is saved is determined by either the ViewStateContent or ViewStateData properties.
Note
This property must be set prior to the Page_Load (the Page_Init or the constructor will work) or it will have no effect.
For more information consult the Visual Studio documentation that discusses view state or state management.