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

tooltip.shared: true is not working correctly

3 Answers 146 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Stan
Top achievements
Rank 1
Stan asked on 16 Oct 2014, 06:34 PM
Both:
$("#chart").kendoChart({
                    ...,
                    tooltip: {
                        visible: true,
                        shared: true,
                        template: "#= category # #= series.name #: #= value #"
                    }
                });
and:
$("#chart").kendoChart({
                    ...,
                    tooltip: {
                        visible: true,
                        shared: true,
                        sharedTemplate: kendo.template($("#template").html())
                        template: "#= category # #= series.name #: #= value #"
                    }
                });
 Do not share the tooltip at all.

The first one renders the SINGLE template correctly, but nothing is shared.  The second one (using the template from the documentation) just shows the single value, no sharing.  Am I missing something?

3 Answers, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 20 Oct 2014, 06:54 AM
Hi Stan,

I tested shared tooltip and shared tooltip template and both are working as expected - please check the provided examples and let me know if you still observe any problems. Keep in mind that in order to have shared tooltip you need at least two series. 

Regards,
Iliana Nikolova
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Dennis
Top achievements
Rank 1
answered on 19 May 2015, 02:45 PM

Hello

 I have found that the shared tooltip does not work correctly when using

type: "radarLine"

0
Iliana Dyankova
Telerik team
answered on 21 May 2015, 08:59 AM

Hi Dennis,

Shared tooltip is not supported for radarLine charts - it is supported only for categorical series (such as column, line, area etc).

Regards,
Iliana Nikolova
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
Charts
Asked by
Stan
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Dennis
Top achievements
Rank 1
Share this question
or