Skip to main content
A newer version of this page is available. .

ASPxPivotGridListEditor.ChartControlContainer Property

Gets the container of the ASPxPivotGridListEditor.ChartControl

Namespace: DevExpress.ExpressApp.PivotGrid.Web

Assembly: DevExpress.ExpressApp.PivotGrid.Web.v19.1.dll

Declaration

public ResizableControlContainer ChartControlContainer { get; }

Property Value

Type Description
DevExpress.ExpressApp.Web.Controls.ResizableControlContainer

A ResizableControlContainer object that specifies the container of the ASPxPivotGridListEditor.ChartControl.

Remarks

Use this property to manage the size of the chart control displayed with the pivot grid. For instance, the following Controller customizes the minimal height that the chart control may occupy.

using DevExpress.ExpressApp;
using DevExpress.ExpressApp.PivotGrid.Web;
// ...
public class CustomizePivotChartMinHeightController : ViewController {
    public CustomizePivotChartMinHeightController() {
        TargetViewType = ViewType.ListView;
    }
    protected override void OnActivated() {
        base.OnActivated();
        ASPxPivotGridListEditor editor = ((ListView)View).Editor as ASPxPivotGridListEditor;
        if (editor != null) {
            editor.ControlsCreated += new EventHandler(editor_ControlsCreated);
        }
    }
    void editor_ControlsCreated(object sender, EventArgs e) {
        ((ASPxPivotGridListEditor)sender).ChartControlContainer.MinHeight = 800;
    }
}
See Also