This is a migrated thread and some comments may be shown as answers.

Important: Tooltips not visible in Q3'13 release

0 Answers 73 Views
Sparkline
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Kendo UI
Top achievements
Rank 1
Kendo UI asked on 21 Nov 2013, 01:00 PM
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:
  • 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} %"
          }
        });
Apologies for the caused inconvenience.
Tags
Sparkline
Asked by
Kendo UI
Top achievements
Rank 1
Share this question
or