Header
The Header tag is used to show a header on the labeling interface.
Parameters
| Param | Type | Default | Description | 
|---|---|---|---|
| value | string | Text of header, either static text or the field name in data to use for the header | |
| [size] | number | 4 | Level of header on a page, used to control size of the text | 
| [style] | string | CSS style for the header | |
| [underline] | boolean | false | Whether to underline the header | 
Example
Display a header on the labeling interface based on a field in the data
<View>
  <Header value="$text" />
</View>Example
Display a static header on the labeling interface
<View>
  <Header value="Please select the class" />
</View>