ChartValueAxisCrosshairTooltipSettingsTagHelper
Example
Razor
<chart-value-axis-crosshair-tooltip>
    <border />
    <padding />
</chart-value-axis-crosshair-tooltip>
ChildTags
| Tag Name | Details | 
|---|---|
| border | ChartValueAxisCrosshairTooltipBorderSettingsTagHelper | 
| padding | ChartValueAxisCrosshairTooltipPaddingSettingsTagHelper | 
Attributes
| Attribute | Type | Description | 
|---|---|---|
| background | String | The background color of the tooltip. Accepts a valid CSS color string, including hex and rgb. | 
| color | String | The text color of the tooltip. Accepts a valid CSS color string, including hex and rgb. | 
| font | String | The tooltip font. | 
| format | String | The format used to display the tooltip. Uses kendo.format. Contains one placeholder ("{0}") which represents the value value. | 
| position | String | The position of the crosshair tooltip. | 
| template | String | The template which renders the tooltip.The fields which can be used in the template are: value - the value value. | 
| template-handler | String | The template which renders the tooltip.The fields which can be used in the template are: value - the value 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 tooltip.The fields which can be used in the template are: value - the value value. This option expects the ID of the script element that contains the template. | 
| template-view | IHtmlContent | The template which renders the tooltip.The fields which can be used in the template are: value - the value value. This option expects the instance containing the created HTML. | 
| visible | Boolean | If set to true the chart will display the value axis crosshair tooltip. By default the value axis crosshair tooltip is not visible. |