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",
legend: {
align: "right",
valign: "middle"
},
xAxis: {
lines: false
},
markers: "diamond"
},
// 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. Here are some of the settings::
false
, the lines for the axes are not shown. true
by default. For other types use the following settings:
false
, the X axis lines are not shownfalse
, the Y axis lines are not shownfalse
, the tooltips are not shownfalse
, the labels are not shownfalse
, the chart area is not filled with color.