Docs
API
  • chart

    Array

    Array of charts.

    Over this property, it is set charts with which grid will be bind.

    Sorting, editing grid will run auto-update of charts.

    If in data object, it is not set items, that data will be read in grid from the first chart.

    Example

    
    data: {
      items: data,
      chart: [{
        type: 'highchart',
        id: 'column',
        fields: ['toyota', 'gm', 'vw', 'ford', 'hyundai']
      }]
    },
    

    Example

    
    chart: [{
      type: 'highchart',
      id: 'spline',
      fields: ['toyota', 'gm', 'vw', 'ford', 'hyundai']
    }, {
      type: 'highchart',
      id: 'bar',
      fields: ['toyota', 'gm', 'vw', 'ford', 'hyundai']
    }, {
      type: 'highchart',
      id: 'column',
      fields: ['toyota', 'gm', 'vw', 'ford', 'hyundai']
    }]
    },
    

    Default

    
    undefined