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

Shared tooltip position

7 Answers 177 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Robson
Top achievements
Rank 2
Robson asked on 11 Dec 2015, 02:01 PM

I would like to change the position of Shared Tooltip.

It is hindering select columns.

 See the example :

http://dojo.telerik.com/IJiYI/4

7 Answers, 1 is accepted

Sort by
0
Helen
Telerik team
answered on 14 Dec 2015, 08:24 AM
Hello,

I am afraid changing the shared tooltip position is not supported by Kendo UI Chart and there is no a suitable workaround I can suggest. We are sorry for the inconvenience caused.

Regards,
Helen
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Robson
Top achievements
Rank 2
answered on 14 Dec 2015, 10:04 AM

But, i have another problem,

When using normal tooltips , not work

Look this 

 

0
Helen
Telerik team
answered on 14 Dec 2015, 01:44 PM

Hi Robson,

Find below a working example:

http://dojo.telerik.com/IJiYI/13


Regards,

Helen
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Robson
Top achievements
Rank 2
answered on 14 Dec 2015, 01:50 PM

Hi Helen,

 I need to select the information.

In your example you are not using select: { from: 1 to: 4 }.

 

0
Helen
Telerik team
answered on 15 Dec 2015, 07:50 AM
Hi Robson,

Tooltip doesn't show when a selection is used.


Regards,
Helen
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Robson
Top achievements
Rank 2
answered on 15 Dec 2015, 06:12 PM

Hi , I created this solution to use the tooltip .

If someone needs to follow the example:

http://dojo.telerik.com/IJiYI/18

 

When using DataSource:

use this code:

function GetInfo(searchValue) {
 
    var result = $("#chart").data("kendoChart").dataSource.data().filter(function (dados) {
        return dados.value == searchValue.value;
    })
 
 
    if (result.length == 1)
        return result[0];
    else
        return null
 
}
 

 

0
Helen
Telerik team
answered on 16 Dec 2015, 07:36 AM
Hi Robson,

Thank you for sharing your solution with the community.


Regards,
Helen
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
Robson
Top achievements
Rank 2
Answers by
Helen
Telerik team
Robson
Top achievements
Rank 2
Share this question
or