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

Stockchart events

1 Answer 39 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Josh
Top achievements
Rank 1
Josh asked on 13 Jun 2014, 01:31 PM
Is it possible to disable mouse field events and dragging on the stock chart?

1 Answer, 1 is accepted

Sort by
0
Accepted
T. Tsonev
Telerik team
answered on 17 Jun 2014, 07:25 AM
Hello,

The stock chart mouse events can be disabled by cancelling the dragStart, zoomStart and selectStart events:
zoomStart: function(e) {
  e.preventDefault();
},
dragStart: function(e) {
  e.preventDefault();
},
selectStart: function(e) {
  e.preventDefault();
}


We're looking forward to add dedicated properties to make this easier.

Regards,
T. Tsonev
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
Josh
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Share this question
or