Looks like they're using some internal methods of the Highcharts library in order to achieve that effect. You could do the same via custom JS (or GWT JSNI). Essentially, for every point in the series they're calling a custom JS function that does the following to create those images:
That "image()" method simply creates a new "image" DOM element with the given attributes via jQuery (or whatever DOM wrapper is installed), and then the "add()" method adds it to the DOM.
Hope that helps,
-Shawn
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Looks like they're using some internal methods of the Highcharts library in order to achieve that effect. You could do the same via custom JS (or GWT JSNI). Essentially, for every point in the series they're calling a custom JS function that does the following to create those images:
That "image()" method simply creates a new "image" DOM element with the given attributes via jQuery (or whatever DOM wrapper is installed), and then the "add()" method adds it to the DOM.
Hope that helps,