-2

Example image

How I can select multiple areas by pressing "ctrl"+mouseclick?

Halvor Holsten Strand
  • 19,829
  • 17
  • 83
  • 99
toney
  • 35
  • 5

1 Answers1

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