value

определяет поле данных, значения из которого будет показано на вертикальной оси

template value;

Example

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

Related samples

Details

Заданное как функция, это свойство принимает в качестве параметра объект данных и вызывается для каждого элемента данных:

webix.ui({
    view:"chart",
    value:"#sales#",
    ...
});
//равно
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
Наверх
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.