Multiple panes in ASP.NET MVC 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 Height property. The value can be either in percentage or in pixel.
  • To associate a vertical axis to a particular row, specify its index to RowIndex property 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 Width property. The given width can be either in percentage or in pixel.
  • To associate a horizontal axis to a particular column, specify its index to ColumnIndex property of the axis.

For spanning the vertical axis along multiple column, you can useĀ Span property of an axis.