Layout

24 May 20191 minute to read

Row-wise layout

Gauges can be arranged in the specified number of rows by using the rowsCount property.

  • JAVASCRIPT
  • $("#PivotGauge1").ejPivotGauge({
            //....
            rowsCount: 2
        });

    Row-wise layout in JavaScript pivot gauge control

    Column-wise layout

    Gauges can be arranged in the specified number of columns by using the columnsCount property.

  • JAVASCRIPT
  • $("#PivotGauge1").ejPivotGauge({
            //....
            columnsCount: 2,
        });

    Column-wise layout in JavaScript pivot gauge control