ChartYAxisNotesLabelSettingsTagHelper
Example
Razor
<chart-y-axis-notes-label>
    <border />
</chart-y-axis-notes-label>
ChildTags
| Tag Name | Details | 
|---|---|
| border | ChartYAxisNotesLabelBorderSettingsTagHelper | 
Attributes
| Attribute | Type | Description | 
|---|---|---|
| background | String | The background color of the label. Accepts a valid CSS color string, including hex and rgb. | 
| color | String | The text color of the label. Accepts a valid CSS color string, including hex and rgb. | 
| font | String | The font style of the label. | 
| format | String | The format used to display the notes label. Uses kendo.format. Contains one placeholder ("{0}") which represents the axis value. | 
| position | ChartNoteLabelPosition | The position of the labels. "inside" - the label is positioned inside of the icon. or "outside" - the label is positioned outside of the icon.. | 
| rotation | Double | The rotation angle of the label. By default the label are not rotated. | 
| template | String | The template which renders the labels.The fields which can be used in the template are: value - the axis value. | 
| template-handler | String | The template which renders the labels.The fields which can be used in the template are: value - the axis value. This option expects the name of a JavaScript function that will be called to return the template. | 
| template-id | String | The template which renders the labels.The fields which can be used in the template are: value - the axis value. This option expects the ID of the script element that contains the template. | 
| template-view | IHtmlContent | The template which renders the labels.The fields which can be used in the template are: value - the axis value. This option expects the instance containing the created HTML. | 
| visible | Boolean | If set to true the chart will display the y axis notes label. By default the y axis notes label is visible. |