defines settings for the Pivot chart
webix.ui({
view: "pivot",
structure: {
rows: ["form", "name"],
columns: ["year"],
values: [{ name: "oil", operation: ["max", "sum"] }],
},
chart: {
type: "line",
scale: "logarithmic",
},
// config
});
The chart
object defines settings for the chart in the chart
mode. Inside this object you can provide any setting valid for the Chart widget. Basic chart
fields:
false
, the lines for the axes are not shown. true
by default