SMART datagrid v.1 > Classes > CategorizedAxis
The right (the far side from starting point of axis) margins of area in which will display series items in one category of axis.
You can specify the left margins by paddingNear, and can also specify the left and right margins at the same time by padding.
Defaults to 0.
grid.setOptions({
headerItems: [{
type: "chart",
chart: {
type: "column",
xAxes: {
paddingNear: 0.1,
paddingFar: 0.1
}
}
}]
});