This question is locked. New answers and comments are not allowed.
Hello,
A defect is preventing the sparkline tooltips from showing in the official release (v. 2013.3.1119) .
This issue is fixed in internal build v. 2013.3.1121 and later.
Recommended temporary workarounds:
Apologies for the caused inconvenience.
A defect is preventing the sparkline tooltips from showing in the official release (v. 2013.3.1119) .
This issue is fixed in internal build v. 2013.3.1121 and later.
Recommended temporary workarounds:
- Disable shared tooltips. This will not negatively affect Sparklines with only one series.
$("#hum-log").kendoSparkline({
type: "area",
data: [71, 70, 69],
tooltip: {
format: "{0} %",
shared: false
}
});
- Set series names on Sparklines with more than one series:
$("#sparkline").kendoSparkline({
type: "area",
series: [{
name: "Series one",
data: [71, 70, 69, 68, 65, 60, 55, 55, 50, 52]
}, {
name: "Series two",
data: [73, 72, 72, 71, 68, 63, 57, 58, 53, 55]
}],
tooltip: {
format: "{0} %"
}
});