Multiple Panes in React Chart
Chart area can be divided into multiple panes using rows and columns.
Rows
To split the chart area vertically into number of rows, use ChartRow component of the chart.
-
You can allocate space for each row 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.
Column
To split the chart area horizontally into number of columns, use ChartColumn component of the chart.
-
You can allocate space for each column 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.