ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  Multiple Realtime Chart
Posted by Sureshinthu on May-02-2017 15:08
Attachments:
Dear Peter,

           I want to show the multiple real time chart with View Portal from Some Data(Like Name and Address) . For Example 5 Members Meant I want to show 5 Real time charts with view portal and 5 members details in top of the each chart. Herewith I have attached Web Real time chart with View Portal Codings.(.NET MVC C#). Please help me!!!!
realtimeviewportaspnetmvc.zip
realtimeviewportaspnetmvc.zip

6.23 Kb

  Re: Multiple Realtime Chart
Posted by Peter Kwan on May-03-2017 01:39
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