Documentation

pieInnerText

sets the template for the pie inner labels

string|function pieInnerText;

Example

webix.ui({
    view:"chart",
    type:"pie",
    label:"#month#",
    pieInnerText:"#sales#",
    ...
})

See also

Details

The property is applicable only to pie charts


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

webix.ui({
    view:"chart",
    type:"pie",
    pieInnerText:function(obj){ return obj.sales;},
    ...
})


Back to top