Documentation

cant

defines the slope angle of 3D pie

number cant;

Example

webix.ui({
    view: "chart",
    type:"pie3D",
    container:"chartDiv",
    value:"#sales#",
    label:"#month#",
    cant:0.7,
    data:month_dataset
});

See also

Details

The parameter can take value from 0 to 1.
The default value is 0.5 .

Back to top