ASPxPivotGridListEditor.ChartControlContainer Property
Gets the container of the ASPxPivotGridListEditor.ChartControl
Namespace: DevExpress.ExpressApp.PivotGrid.Web
Assembly: DevExpress.ExpressApp.PivotGrid.Web.v24.1.dll
NuGet Package: DevExpress.ExpressApp.PivotGrid.Web
Declaration
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 += editor_ControlsCreated;
}
}
void editor_ControlsCreated(object sender, EventArgs e) {
((ASPxPivotGridListEditor)sender).ChartControlContainer.MinHeight = 800;
}
}
See Also