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

issue with seriesHover

1 Answer 99 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Aboo
Top achievements
Rank 1
Aboo asked on 02 May 2012, 12:12 PM
as per documentation 
seriesHover should work like seriesClick. However in my example below it doesnt . when i replace seriesHover with seriesClick it works for a click event.
 
function createChart() {
                    $("#chart").kendoChart(
                       {
                           title: {
                                 text: "Kendo Chart Example"
                            },
                            seriesDefaults: {
                                type: "line"
                            },
                            series: [
                                 { name: "Example Series", data: [200, 450, 300, 125] }
                            ],
                            tooltip: {
                                visible: true,
                                format: "{0}%"
                            },
                            seriesHover:function(e) {
                                var w=e.value;
                                alert(w);
                            }
                       }
                    );
                }
                
                $(document).ready(function() {
                    createChart();
                });
 

1 Answer, 1 is accepted

Sort by
0
Accepted
Iliana Dyankova
Telerik team
answered on 03 May 2012, 03:14 PM
Hello Aboo,

The reason for your issue is the version of Kendo UI that you use. The seriesHover event is available with one of our internal builds after the official release of the latest version 2012.1.322, but the internal builds are available only for customers with Commercial License purchase.
   
Regards,
Iliana Nikolova
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Charts
Asked by
Aboo
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or