Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ChartControlBase.EndInit() Method

In This Article

Ends the ChartControlBase‘s initialization.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v24.2.dll

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public override void EndInit()

#Remarks

Calling the ChartControlBase.BeginInit method prevents any validation from being performed until the EndInit method is called. This may lead to unexpected results in the case of any initialization errors.

If ChartControlBase.BeginInit was previously called, the base implementation will raise the Initialized event. Otherwise, if ChartControlBase.BeginInit was not called or it could not be determined whether BeginInit was called, Initialized is not raised and an exception is thrown instead.

See Also