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

WebChartControl.CustomizeResolveOverlappingMode Event

OBSOLETE

The CustomizeXAxisLabels event is obsolete now. Use the PivotChartingCustomizeXAxisLabels event instead.

Occurs before an automatic setting is applied to the overlap resolving mode of series labels.

Namespace: DevExpress.XtraCharts.Web

Assembly: DevExpress.XtraCharts.v20.2.Web.dll

NuGet Package: DevExpress.Web.Visualization

Declaration

[Obsolete("The CustomizeXAxisLabels event is obsolete now. Use the PivotChartingCustomizeXAxisLabels event instead.")]
public event CustomizeResolveOverlappingModeEventHandler CustomizeResolveOverlappingMode

Event Data

The CustomizeResolveOverlappingMode event's data class is CustomizeResolveOverlappingModeEventArgs. The following properties provide information specific to this event:

Property Description
ResolveOverlappingMode Specifies the resolve overlapping mode for the series labels.

Remarks

When a familiar data source (such as the ASPxPivotGrid) is assigned to the chart’s ASPxDataWebControlBase.DataSourceID property, and the WebChartControl.AutoLayoutSettingsEnabled property is turned on, the SeriesLabelBase.ResolveOverlappingMode property is defined automatically, and cannot be customized at design time.

Handle the CustomizeResolveOverlappingMode event, to manually adjust this option (via the WebChartControl.CustomizeResolveOverlappingMode property).

Note

When possible, the resolve overlapping mode of the series labels is set to Default. Or, when there are too many labels to fit in the current diagram size - to HideOverlapped.

For more information, see Pivot Charting (Integration with a Pivot Grid Control).

See Also