Hi M_Jay,
From your previous message, I assume you have already set up an image map for the scatter points. When the user clicks on a point, you can handle the onclick event, and remember the point clicked. In this way, you can know how many points the user has clicked.
If you want to provide your user with some feedback, you may use any method you like. For example, you may put a rectangle to enclose the selected point. (In HTML, the rectangle can be created with an empty <DIV> block with a border, so you just need to put a rectangle on the point in your onclick event handler.) You may also choose the redraw the chart with the selected point using a different color, etc.
Hope this can help.
Regards
Peter Kwan |