Documentation

value

defines values for the vertical axis

template value;

Example

webix.ui({
    view:"chart",
    type:"bar",
    value:"#sales#",
    label:"#year#",
    ...
})

See also

Details

As a function, the property accepts a data object and is called for each data item:

webix.ui({
    view:"chart",
    value:"#sales#",
    ...
})
//is equal to
webix.ui({
    view:"chart",
    value:function(obj){ return obj.sales; },
    ...
})
Back to top