<kendo:chart-seriesDefaults-tooltip>
The chart series tooltip configuration options.
Example
<kendo:chart-seriesDefaults>
<kendo:chart-seriesDefaults-tooltip></kendo:chart-seriesDefaults-tooltip>
</kendo:chart-seriesDefaults>
Configuration Attributes
background java.lang.String
The background color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
Example
<kendo:chart-seriesDefaults-tooltip background="background">
</kendo:chart-seriesDefaults-tooltip>
color java.lang.String
The text color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
Example
<kendo:chart-seriesDefaults-tooltip color="color">
</kendo:chart-seriesDefaults-tooltip>
font java.lang.String
The tooltip font.
Example
<kendo:chart-seriesDefaults-tooltip font="font">
</kendo:chart-seriesDefaults-tooltip>
format java.lang.String
The format of the labels. Uses kendo.format.Format placeholders: Area, bar, column, funnel, pyramid, line and pie{0} - value; Bubble{0} - x value{1} - y value{2} - size value{3} - category name; Bullet{0} - value{1} - target value; Scatter and scatterLine{0} - x value{1} - y value; Candlestick and OHLC{0} - open value{1} - high value{2} - low value{3} - close value{4} - category name or RangeArea, rangeBar, rangeColumn{0} - from value{1} - to value.
Example
<kendo:chart-seriesDefaults-tooltip format="format">
</kendo:chart-seriesDefaults-tooltip>
padding float
The padding of the tooltip. A numeric value will set all paddings. Further configuration is available via kendo:chart-seriesDefaults-tooltip-padding.
Example
<kendo:chart-seriesDefaults-tooltip padding="padding">
</kendo:chart-seriesDefaults-tooltip>
template java.lang.String
The template which renders the tooltip.The fields which can be used in the template are: category - the category name; dataItem - the original data item used to construct the point. Will be null if binding to array.; series - the data series; value - the point value (either a number or an object); runningTotal - the sum of point values since the last "runningTotal" summary point. Available for waterfall series. or total - the sum of all previous series values. Available for waterfall series..
Example
<kendo:chart-seriesDefaults-tooltip template="template">
</kendo:chart-seriesDefaults-tooltip>
visible boolean
If set to true the chart will display the series tooltip. By default the series tooltip is not displayed.
Example
<kendo:chart-seriesDefaults-tooltip visible="visible">
</kendo:chart-seriesDefaults-tooltip>
Configuration JSP Tags
kendo:chart-seriesDefaults-tooltip-border
The border configuration options.
More documentation is available at kendo:chart-seriesDefaults-tooltip-border.
Example
<kendo:chart-seriesDefaults-tooltip>
<kendo:chart-seriesDefaults-tooltip-border></kendo:chart-seriesDefaults-tooltip-border>
</kendo:chart-seriesDefaults-tooltip>
kendo:chart-seriesDefaults-tooltip-padding
The padding of the tooltip. A numeric value will set all paddings.
More documentation is available at kendo:chart-seriesDefaults-tooltip-padding.
Example
<kendo:chart-seriesDefaults-tooltip>
<kendo:chart-seriesDefaults-tooltip-padding></kendo:chart-seriesDefaults-tooltip-padding>
</kendo:chart-seriesDefaults-tooltip>
Event Attributes
template String
The template which renders the tooltip.The fields which can be used in the template are: category - the category name; dataItem - the original data item used to construct the point. Will be null if binding to array.; series - the data series; value - the point value (either a number or an object); runningTotal - the sum of point values since the last "runningTotal" summary point. Available for waterfall series. or total - the sum of all previous series values. Available for waterfall series..
Example
<kendo:chart-seriesDefaults-tooltip template="handle_template">
</kendo:chart-seriesDefaults-tooltip>
<script>
function handle_template(e) {
// Code to handle the template event.
}
</script>
Event Tags
kendo:chart-seriesDefaults-tooltip-template
The template which renders the tooltip.The fields which can be used in the template are: category - the category name; dataItem - the original data item used to construct the point. Will be null if binding to array.; series - the data series; value - the point value (either a number or an object); runningTotal - the sum of point values since the last "runningTotal" summary point. Available for waterfall series. or total - the sum of all previous series values. Available for waterfall series..
Example
<kendo:chart-seriesDefaults-tooltip>
<kendo:chart-seriesDefaults-tooltip-template>
<script>
function(e) {
// Code to handle the template event.
}
</script>
</kendo:chart-seriesDefaults-tooltip-template>
</kendo:chart-seriesDefaults-tooltip>