How I can select multiple areas by pressing "ctrl"+mouseclick?
Asked
Active
Viewed 177 times
-2
-
What have you tried so far and where is your code? – Halvor Holsten Strand Mar 07 '17 at 17:01
1 Answers
0
You can enable point selection, and multiple point selection by setting allowPointSelect: true
on a given series. Not all series types support this, but several of Highmaps series types do.
For example see this JSFiddle demonstration where you can:
- Left click to select single points
- Ctrl + left click to select multiple points
You can then for example get the selected points using Chart.getSelectedPoints()
.

Halvor Holsten Strand
- 19,829
- 17
- 83
- 99