Skip to main content
All docs
V25.1
  • OfficeChartsWinFormsExtensions.ActivateWinFormsCharts(OfficeCharts) Method

    Enables Spreadsheet chart support for the WinForms Rich Text Editor.

    Namespace: DevExpress.XtraSpreadsheet.Services

    Assembly: DevExpress.XtraSpreadsheet.v25.1.dll

    NuGet Package: DevExpress.Win.Spreadsheet

    Declaration

    public static void ActivateWinFormsCharts(
        this OfficeCharts instance
    )

    Parameters

    Name Type Description
    instance OfficeCharts

    An OfficeCharts instance.

    Remarks

    The WinForms Rich Text Editor uses WinForms Spreadsheet Charts to render, import, and export documents that contain charts. Follow the steps below to enable spreadsheet charts in the Rich Text Editor:

    1. Add references to the following assemblies:

      • DevExpress.Spreadsheet.v25.1.Core.dll
      • DevExpress.XtraSpreadsheet.v25.1.dll
      • DevExpress.Charts.v25.1.Core.dll
      • DevExpress.XtraCharts.v25.1.dll
      • DevExpress.DataVisualization.v25.1.Core.dll
      • DevExpress.TreeMap.v25.1.Core.dll
      • DevExpress.XtraTreeMap.v25.1.dll
    2. Call the ActivateWinFormsCharts method before the control is initialized:

      using DevExpress.Office.Services;
      using DevExpress.XtraSpreadsheet.Services;
      // ...
      
      public Form1()
      {
          OfficeCharts.Instance.ActivateWinFormsCharts();
          InitializeComponent();
      }
      

    Charts are stored in the SubDocument.Shapes collection. Use the ShapeCollection.InsertChart method to add a chart to a document.

    See the following topic for details on how to use the Spreadsheet Chart API to create and modify charts in the Rich Text Editor: Charts in Rich Text Documents.

    See Also