I have 3 series on my chart. Is it possible to give user only one serie to modify (as dragable line) whilst other can't be modify?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

This is totally undocumented, but browsing the source for the dragable plugin it is as simple as setting the isDragable property for that series to false.

series:[{},{isDragable:false}] //set the second series to be undraggable.

See working example here.

link|improve this answer
Great. This is it! – TOUDIdel Jan 12 at 8:29
It's included only in one paragraph (at the bottom) – TOUDIdel Jan 12 at 8:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.