Documentation

offset

defines whether the first item of the scale will be drawn with the offset equal to the half of the scale's step (relative to the origin of the chart) or not.

boolean offset;

Example

webix.ui({
    view:"chart",
    type:"line",
    offset:false,
    ...
})

See also

Details

The property is applicable only to line, scatter, area charts

Back to top