I am wondering, if it by gwt higcharts possible during rendering the charts to show the charts on the spot, and not drawing it at each point? Or is it by highcharts current function and it can't be shown in another way?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Apologies, but I'm not sure I follow your question. You can certainly render the entire chart at once (including the initial data series and points), instead having to add each point to the chart after it is shown. Most of the code examples in the Showcase application are setup that way. Or, you can also add or change points in any series after it is rendered (or add/remove whole series) as well. Example of the later case here:
I am wondering, if it by gwt higcharts possible during rendering the charts to show the charts on the spot, and not drawing it at each point? Or is it by highcharts current function and it can't be shown in another way?
Apologies, but I'm not sure I follow your question. You can certainly render the entire chart at once (including the initial data series and points), instead having to add each point to the chart after it is shown. Most of the code examples in the Showcase application are setup that way. Or, you can also add or change points in any series after it is rendered (or add/remove whole series) as well. Example of the later case here:
http://www.moxiegroup.com/moxieapps/gwt-highcharts/showcase/#dynamic-spline-updating
thank you