7 Answers, 1 is accepted
0
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
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
0
Hi Robson,
Find below a working example:
http://dojo.telerik.com/IJiYI/13
Regards,
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
Hi Robson,
Tooltip doesn't show when a selection is used.
Regards,
Helen
Telerik
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
Hi Robson,
Thank you for sharing your solution with the community.
Regards,
Helen
Telerik
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!