preset
applies the predefined chart configuration object with the specified name
string preset;
Values
"column"
bar charts
"stick"
bar charts
"alpha"
bar charts
"area"
radar charts
"line"
radar charts
"point"
radar charts
"simple"
line, scatter charts
"plot"
line, scatter charts
"round"
line, scatter charts
"square"
line, scatter charts
"diamond"
line, scatter charts
Example
webix.ui({
view:"chart",
type:"radar",
value:"#companyA#",
preset:"line",
xAxis:{ template:"#month#"},
data:companies
)}
Related samples
See also
Back to top