Documentation

preset

applies the predefined chart configuration object with the specified name

string preset;

Example

webix.ui({
    view:"chart",
    type:"radar",
    value:"#companyA#",
    preset:"line",
    xAxis:{ template:"#month#"},
    data:companies
)}

See also

Details

Currently, the following presets are available:

  • Bar charts
    • 'column'
    • 'stick'
    • 'alpha'
  • Radar charts
    • 'area'
    • 'line'
    • 'point'
  • Line, scatter charts
    • 'simple'
    • 'plot'
    • 'round'
    • 'square'
    • 'diamond'
Back to top