Docs
API
  • column

    Boolean

    Placing radio elements in column.

    Example

    
    ...
    items: [{
      type: 'radio',
      label: 'Favorite SUV?',
      name: 'suv',
      column: true,
      items: [{
        text: 'KIA Sportage',
        value: 'sportage'
      },{
        text: 'Toyota Land Cruiser',
        value: 'landcruiser'
      },{
        text: 'Honda CR-V',
        value: 'crv'
      },{
        text: 'Range Rover Sport',
        value: 'rrs'
      }]
    ...
    

    Default

    
    false