Back to Devexpress

Create and Modify a Chart Programmatically

windowsforms-17429-controls-and-libraries-spreadsheet-charts-and-graphics-create-and-modify-a-chart-programmatically.md

latest19.6 KB
Original Source

Create and Modify a Chart Programmatically

  • Feb 26, 2026
  • 8 minutes to read

This topic describes how to use the Spreadsheet Chart API to create and modify charts in code.

Arrange Worksheet Data to Create a Chart

When you create a chart, the SpreadsheetControl plots data on the chart based on the number of rows and columns in the source range:

  1. If the source range has more rows than columns, the first column provides labels for the category axis (X-axis), and the first row contains series names. Series values are arranged in columns.

  2. If the source range has more columns than rows or the number of rows and columns is the same, the first row provides labels for the category axis (X-axis), and the first column contains series names. Series values are arranged in rows.

You can use the ChartObject.SwitchRowColumn method to change the default direction used to plot data series on a chart (whether the series values are obtained from columns or rows), or call the ChartObject.SelectData method with the direction parameter to specify how to retrieve series values.

The table below lists how to arrange data on a worksheet to create a specific chart.

|

Chart type

|

Data arrangement

| | --- | --- | |

Line, column, bar, area, surface, or radar chart

|

In columns or rows:

| |

Pie chart

|

Uses a single series of values arranged in one column or row. Another column or row contains data labels.

| |

Doughnut chart

|

In one or multiple columns or rows, and one column or row contains data labels.

| |

Scatter or bubble chart

|

In columns or rows. Place x values in the first column or row, and the corresponding y values in the adjacent columns or rows.

For a bubble chart, add columns or rows specifying the bubble size.

| |

Stock chart

|

In columns or rows in the same order as the stock chart name.

|

Create a Chart

The chart collection (ChartCollection) stores charts in a worksheet. You can use the Worksheet.Charts property to access a worksheet’s chart collection, and the collection’s ChartCollection.Add method to create a chart. The ChartType enumeration value specifies the chart type.

Use one of the following approaches to specify the chart’s data:

The ChartData object specifies data plotted on a chart. You can also use an array of numeric, string, or boolean literals as the chart’s data source. ChartData supports implicit conversion from an array of CellValue objects. You can use these objects to specify numeric, string, or boolean values without casting. Use the ChartData.FromArray method to convert the CellValue type arrays to chart data, or assign these arrays to the series’s arguments and values directly.

csharp
// Create a column chart.
Chart chart = worksheet.Charts.Add(ChartType.ColumnClustered);
// Add a series bound to a set of literal data.
Series literalSeries = chart.Series.Add(
    new CellValue[] { "Jan", "Feb", "Mar", "Apr", "May", "Jun" },
    new CellValue[] { 50, 100, 30, 104, 87, 150 });
vb
' Create a column chart.
Dim chart As Chart = worksheet.Charts.Add(ChartType.ColumnClustered)
' Add a series bound to a set of literal data.
Dim literalSeries As Series = chart.Series.Add(
      New CellValue() { "Jan", "Feb", "Mar", "Apr", "May", "Jun" }, 
      New CellValue() { 50, 100, 30, 104, 87, 150 })

The following topics contain more examples on how to create charts in code: How to: Create and Modify a Chart and How to: Create Excel 2016 Charts.

Combination Charts

Each chart has an associated ChartView. This object is created automatically when you create a chart. It consolidates data series of the same type (ChartView.Series) and contains customization options. A ChartView object is a member of the Chart.Views collection. A chart can have several ChartView objects (a combination chart). To create a combination chart, use the Series.ChangeType method to change an existing series’s type. If the specified type is incompatible with the other series types, the Spreadsheet control clears ChartViewCollection and creates a new ChartView object to display all chart series. This object has the same type as the modified data series. The following topic contains a list of compatible chart types and describes how to create a combination chart: How to: Create and Modify a Chart.

Modify a Chart and Adjust Its Settings

After you create a chart, you can use the Spreadsheet Chart API members to change the chart’s layout and appearance.

Tip

To improve the control’s performance by avoiding unnecessary render operations after each modification, enclose the chart modifications in the Workbook.BeginUpdate() - Workbook.EndUpdate() method pair.

The table below lists the actions you can perform on a chart.

|

To perform this task

|

Use these API members

|

Example

| | --- | --- | --- | |

Change the source data for a chart

|

Chart.SelectData

Series.Arguments

Series.Values

|

How to: Create and Modify a Chart

| |

Add or remove data series

|

SeriesCollection.Add

SeriesCollection.Remove

SeriesCollection.RemoveAt

SeriesCollection.Clear

|

How to: Create and Modify a Chart

| |

Change the data direction on a chart

|

Chart.SwitchRowColumn

|

How to: Create and Modify a Chart

| |

Change the data series’ order

|

Series.BringForward

Series.SendBackward

Series.BringToFront

Series.SendToBack

|

How to: Create and Modify a Chart

| |

Change a chart type

|

Chart.ChangeType

|

How to: Create and Modify a Chart

| |

Change a series type

|

Series.ChangeType

|

How to: Create and Modify a Chart

| |

Add error bars

|

Series.ErrorBars

|

How to: Add Error Bars to a Chart Series

| |

Create a chart on a separate sheet ( chart sheet ),

or move an existing chart to a new chart sheet

|

IWorkbook.ChartSheets

ChartSheetCollection.Add

Chart.MoveToNewChartSheet

|

How to: Create a Chart Sheet

How to: Move a Chart to a Chart Sheet

| |

Display or hide primary axes ,

specify their position and orientation

|

Chart.PrimaryAxes

Axis

Axis.Visible

Axis.Position

Axis.Scaling.Orientation

|

How to: Change the Display of Chart Axes

| |

Add axis titles

|

Axis.Title

Axis.Title.Visible

Axis.Title.SetValue

Axis.Title.SetReference

|

How to: Change the Display of Chart Axes

| |

Change the axis scaling , and

format numbers on the axis

|

Axis.Scaling

AxisScaling.Min

AxisScaling.Max

AxisScaling.LogScale

AxisScaling.LogBase

Axis.NumberFormat

|

How to: Change the Display of Chart Axes

| |

Display secondary axes

|

Series.AxisGroup

AxisGroup.Secondary

Chart.SecondaryAxes

|

How to: Change the Display of Chart Axes

| |

Display or hide gridlines

|

Axis.MajorGridlines

Axis.MinorGridlines

|

How to: Change the Display of Chart Axes

| |

Add a chart title

|

Chart.Title

ChartTitle.Visible

ChartTitle.SetValue

ChartTitle.SetReference

|

How to: Display the Chart Title

| |

Display or hide a chart legend , specify its position,

customize a legend entry

|

Chart.Legend

Legend.Visible

Legend.Position

Legend.CustomEntries

|

How to: Show or Hide the Chart Legend

| |

Display data labels for the entire chart

or individual series/data points

|

ChartView.DataLabels

DataLabelPosition

Series.UseCustomDataLabels

Series.CustomDataLabels

|

How to: Display and Format Data Labels

| |

Apply a number format to data labels

|

ChartView.DataLabels.NumberFormat

|

How to: Display and Format Data Labels

| |

Apply a chart style

|

Chart.Style

|

How to: Format Chart Elements

| |

Fill a chart element

|

ShapeFormatBase.Fill

ShapeOutlineFill.SetNoFill

ShapeOutlineFill.SetSolidFill

ShapeOutlineFill.SetGradientFill

|

How to: Format Chart Elements

How to: Change the Color of Series Points

| |

Format a chart element’s outline

|

ShapeFormatBase.Outline

ShapeOutlineFill.SetSolidFill

ShapeOutlineFill.SetNoFill

ShapeOutline.Width

|

How to: Format Chart Elements

| |

Format a chart element’s text

|

ShapeTextFormat.Font

|

How to: Format Chart Elements

|

See Also

Spreadsheet Chart Examples

How to: Create Excel 2016 Charts in the WinForms Spreadsheet Control