Documentation

alpha

defines the opacity of chart items

number alpha;

Example

webix.ui({
    view:"chart",
    container:"chartDiv",
    type:"bar",
    ...
    alpha:0.5
});

See also

Details

The parameter can take value from 0.0 (fully transparent) to 1.0 (fully opaque).
The default value - 1.

Back to top