Using the Grid
All the charts shown use a position in the grid. This is an example:
The first component is a bar, it has order=0
, and cols_size=5.
The second component is a pie, with order=1
, and cols_size=4
. They are in the same row because the total number of column spaces in a row is 12.
The third component is a line chart, order=2
, and cols_size=12
. It spans all the row, there is a space before the component because a padding='1,0,0,0'
introduces this space. The space is introduced in this order: Padding:
[ top, right, bottom, left
], for more details see Grid.
For more information refer to Grid.
Last updated