Documentation

label

sets the template for items' labels

string|function label;

Example

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

See also

Details

Generally, charts show labels above data items.
Pie charts show labels outside sectors. To define labels within pie's sectors, use the pieInnerText property.

Back to top