Back to Devexpress

SeriesLayoutOptions.Treemap Property

officefileapi-devexpress-dot-spreadsheet-dot-charts-dot-serieslayoutoptions-1c19f735.md

latest2.9 KB
Original Source

SeriesLayoutOptions.Treemap Property

Returns options for a treemap data series.

Namespace : DevExpress.Spreadsheet.Charts

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

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
TreemapSeriesOptions Treemap { get; }
vb
ReadOnly Property Treemap As TreemapSeriesOptions

Property Value

TypeDescription
TreemapSeriesOptions

An object that stores series options for a treemap chart.

|

Property Paths

You can access this nested property as listed below:

Object TypePath to Treemap
Series

.LayoutOptions .Treemap

|

Remarks

The code sample below creates a treemap chart. Use the TreemapSeriesOptions.ParentLabelLayout property to specify the layout of parent labels in the chart. In this example, they are displayed as banners above the categories.

csharp
// Create a treemap chart and specify its location.
Chart chart = worksheet.Charts.Add(ChartType.Treemap, worksheet["B2:E14"]);
chart.TopLeftCell = worksheet.Cells["G2"];
chart.BottomRightCell = worksheet.Cells["N17"];

// Specify series options.
var options = chart.Series[0].LayoutOptions.Treemap;
options.ParentLabelLayout = TreemapParentLabelLayout.Banner;

// Add the chart title.
chart.Title.Visible = true;
chart.Title.SetValue("Daily Food Sales");
vb
' Create a treemap chart and specify its location.
Dim chart As Chart = worksheet.Charts.Add(ChartType.Treemap, worksheet("B2:E14"))
chart.TopLeftCell = worksheet.Cells("G2")
chart.BottomRightCell = worksheet.Cells("N17")

' Specify series options.
Dim options As TreemapSeriesOptions = chart.Series(0).LayoutOptions.Treemap
options.ParentLabelLayout = TreemapParentLabelLayout.Banner

' Add the chart title.
chart.Title.Visible = True
chart.Title.SetValue("Daily Food Sales")

See Also

SeriesLayoutOptions Interface

SeriesLayoutOptions Members

DevExpress.Spreadsheet.Charts Namespace