Multiple panes in ASP.NET Core 3D Chart Component
18 Nov 20181 minute to read
The chart area can be divided into multiple panes using Rows and Columns.
Rows
To split the chart area vertically into number of rows, use Rows property of the 3D chart.
- The space for each row can be allocated by using the
Heightproperty. The value can be either in percentage or in pixel. - To associate a vertical axis to a particular row, specify its index to
RowIndexproperty of the axis.
For spanning the vertical axis along multiple rows, useĀ Span property of an axis.
Columns
To split the chart area horizontally into number of columns, use Columns property of the 3D chart.
- The space for each column can be allocated by using the
Widthproperty. The given width can be either in percentage or in pixel. - To associate a horizontal axis to a particular column, specify its index to
ColumnIndexproperty of the axis.
For spanning the vertical axis along multiple column, you can useĀ Span property of an axis.