Labels - smbc-digital/form-builder GitHub Wiki
LegendAsH1 (boolean) (defaults to false)
This is only valid for the elements listed below:
* **DateInput**
* **Address**
* **Organisation**
* **Street**
* **Radio**
* **Checkbox**
* **Declaration**
* **Time**
Sets the heading level of the legend to H1
```json
{
"Type": "Radio",
"Properties": {
"LegendAsH1": true
}
}
```
LabelAsH1(boolean) (defaults to false)
This is only valid for the elements listed below:
* **Select**
* **Textbox**
* **Textarea**
* **FileUpload**
* **Numeric**
* **DatePicker**
Sets the heading level of the legend to H1
```json
{
"Type": "Textbox",
"Properties": {
"LabelAsH1": true
}
}
```
A note about Labels
Most controls come with labels which can be configured in that controls properties.
In some cases there maybe a need to emphasize a label (this is seen commonly on the address control), in the case the "StrongLabel": true
property should be specified.
note: This feature is new an may not work in some controls.