value

defines values for the vertical axis

template value;

Example

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

Related samples

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; },
    ...
})

For multilevel charts, the value of parent items will be calculated automatically if it is not set in the initial structure.

See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix html5 ui library and page of javascript graphing library product.