adds an additional graph to the chart
obj | object | the graph configuration object |
var barchart = webix.ui({
view:"chart",
type:"bar",
value:"#sales#",
color:"#58dccd"
...
});
barchart.addSeries({
value:"#sales2#",
color:"#36abee",
});
barchart.parse(multiple_dataset);
The method is used to present multiple graphs on a chart. It's an analog to the series property.
Graphs are specified in a standard way.
If you add to the chart graphs of the same type, you can omit the type attribute.