Documentation

series

defines graphs presented on the chart

array series;

Example

webix.ui({
    view:"chart",
    type:"bar",
    ...
    series:[
        {
            value:"#sales#",
            color:"#58dccd"
        },
        {
            value:"#sales2#",
            color:"#36abee",
        }
    ]
});

See also

Details

The property is used to present multiple graphs on a chart. Graphs are specified in a standard way.

If you add to the chart graphs of the same type, you can omit the type attribute.

Back to top