Wijmo UI for the Web
groupIndent Option
wijmo.grid.wijgrid Namespace > options type : groupIndent Option

Default value: 10

Determines the indentation of the groups, in pixels.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  number
    returnsValue = $(".selector").wijgrid("option", "groupIndent");
    
    // Set value
    var newValue; // Type:  number
    $(".selector").wijgrid("option", "groupIndent", newValue);
        
});
var groupIndent : number;
Example
// Set the groupIndent option to the number of pixels to indent data when grouping.
$("#element").wijgrid({ groupIndent: 15 });
See Also

Reference

options type
wijgrid jQuery Widget