0

I am sending a form to Circuit. But I would like the radio buttons to be displayed horizontally and no vertical.

...   form.controls.push({            
          type: 'LABEL',
          text: '<b>' + intents + '</b>'
        },{            
          name: intents,
          type: 'RADIO',
          options: [
              {text:'1', value:'1'},
              {text:'2', value:'2'},
              {text:'3', value:'3'},
              {text:'4', value:'4'},
              {text:'5', value:'5'}
            ]
        }) ...
Alberto Linde
  • 75
  • 1
  • 5

1 Answers1

0

That is not supported to keep the visual design simple and predictable.

Roger Urscheler
  • 774
  • 2
  • 6
  • 11