Chart.EnableViewState Property

Definition

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.

Applies to