Hi Sureshinthu,
One you can display one "Reaitime Chart with Viewport Control", there are many methods to display multiple charts.
Hi Sinthu,
You can always display multiple things on the same web page. There are many methods. For example, you can use HTML IFRAME, like:
<IFRAME SRC="/myController/myAction?chartId=1" style="width:800px; height:550px"><br />
<IFRAME SRC="/myController/myAction?chartId=2" style="width:800px; height:550px"><br />
<IFRAME SRC="/myController/myAction?chartId=3" style="width:800px; height:550px"><br />
In the above "/myController/myAction" is the URL that creates one "Realtime Chart with Viewport Control". If you want a variable number of charts, you can use a loop to create the IFRAME. In your actual code, the charts can depend on the chartId or any parameter you would like to pass to the charting page "/myController/myAction".
Hope this can help.
Regards
Peter Kwan |