Back to Devexpress

ChartTitle Interface

officefileapi-devexpress-dot-spreadsheet-dot-charts-e8b194ad.md

latest3.1 KB
Original Source

ChartTitle Interface

A chart title.

Namespace : DevExpress.Spreadsheet.Charts

Assembly : DevExpress.Spreadsheet.v25.2.Core.dll

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
public interface ChartTitle :
    ChartTitleOptions,
    ChartText,
    ShapeFormat,
    ShapeFormatBase,
    ShapeTextFormat
vb
Public Interface ChartTitle
    Inherits ChartTitleOptions,
             ChartText,
             ShapeFormat,
             ShapeFormatBase,
             ShapeTextFormat

The following members return ChartTitle objects:

Remarks

The ChartTitle object is accessible using the ChartObject.Title property.

Use the SetReference method to obtain the title text from a worksheet cell or the SetValue method to specify it directly. By default, the chart title is not shown. Set the Visible property to true to display it.

Example

View Example

csharp
Worksheet worksheet = workbook.Worksheets["chartTask2"];
workbook.Worksheets.ActiveWorksheet = worksheet;

// Create a chart and specify its location.
Chart chart = worksheet.Charts.Add(ChartType.BarClustered, worksheet["B4:C7"]);
chart.TopLeftCell = worksheet.Cells["E3"];
chart.BottomRightCell = worksheet.Cells["K14"];

// Display the chart title and specify the title text.
chart.Title.Visible = true;
chart.Title.SetValue("Market share Q3'13");

// Hide the chart legend.
chart.Legend.Visible = false;
// Specify that each data point in the series has a different color.
chart.Views[0].VaryColors = true;
vb
Dim worksheet As Worksheet = workbook.Worksheets("chartTask2")
workbook.Worksheets.ActiveWorksheet = worksheet

' Create a chart and specify its location.
Dim chart As Chart = worksheet.Charts.Add(ChartType.BarClustered, worksheet("B4:C7"))
chart.TopLeftCell = worksheet.Cells("E3")
chart.BottomRightCell = worksheet.Cells("K14")

' Display the chart title and specify the title text.
chart.Title.Visible = True
chart.Title.SetValue("Market share Q3'13")

' Hide the chart legend.
chart.Legend.Visible = False
' Specify that each data point in the series has a different color.
chart.Views(0).VaryColors = True

See Also

ChartTitle Members

Spreadsheet Charts

DevExpress.Spreadsheet.Charts Namespace