When double clicking a jqplot graph, it is blinking and not showing the data point. When I click outside the canvas again, it reappears. This is the example. Is there any property that I am missing?

enter image description here

link|improve this question

50% accept rate
Please show some code that we can use to reproduce the problem. – Mark Nov 19 '11 at 17:03
It happens even for example given in the jqplot docs. For example: jqplot.com/tests/zooming.php. I am on Mac, if that is helpful. – chetu Nov 20 '11 at 0:50
feedback

1 Answer

up vote 1 down vote accepted

Now, I got you. It's a webkit thing (the engine behind Safari and Chrome). The double-click is "selecting" the div.

Add this -khtml-user-select: none; to the chart div style. As in:

<div id="chart1" style="-khtml-user-select: none; height:300px; width:500px;"></div>

Does that make it behave?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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