optionHeight

height of radio-option item

number optionHeight;

Example

webix.ui({
  rows:[{
    view:"radio", 
    vertical:true, 
    optionHeight:37,
    options:["Some <br> Text", "Other <br> Text " ]
  },{
    type:"header", template:"Bottom Line"
  }]
})


Default value:

32
Details

This value is used only to calculate expected height of radio control

Back to top