Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

About IGS Chart

Former Member
0 Kudos

I want to draw two charts in the same screen to compare some data.

Whether we can draw two charts in same screen via the class cl_igs_chart in SAP R3 Enterprise 4.71?

5 REPLIES 5

Former Member

Former Member
0 Kudos

Check with below links and it may help you

http://help.sap.com/saphelp_nw04s/helpdata/en/0b/79553b066d9414e10000000a114084/content.htm

Using Business Graphics in Web Dynpro Applications PDF:

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/wd%20jav...

About Business Graphics:

http://help.sap.com/saphelp_nw2004s/helpdata/en/ed/258841a79f1609e10000000a155106/frameset.htm

Using Business Graphics :

http://help.sap.com/saphelp_nw04/helpdata/en/e5/08b6eb35637a44830b9e6df22987aa/frameset.htm

SAP Business Graphics :

http://help.sap.com/saphelp_nw04/helpdata/en/39/cc9e3b576911d1896f0000e829fbbd/frameset.htm

BG Blogs:

/people/sap.user72/blog/2005/03/23/business-graphics-in-webdynpro

About IGS:

http://help.sap.com/saphelp_nw04/helpdata/en/17/86c039c7811f11e10000000a114084/frameset.htm

INTRODUCTION TO WEBDYN PRO BUSINESS GRAPHICS WEBAS 6.40

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/717cae90-0201-0010-a5a4-bbc6713f...

BG Blogs:

In the user guide

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9214b1e5-0601-0010-fdb0-ec32d43b... you can go through the topic

Web Dynpro BusinessGraphics API -IWDBusinessGraphics

Using Business Graphics :

http://help.sap.com/saphelp_nw04/helpdata/en/e5/08b6eb35637a44830b9e6df22987aa/frameset.htm

Please refer this weblog as well

/people/sap.user72/blog/2005/03/23/business-graphics-in-webdynpro

Check the following threads,

http://help.sap.com/saphelp_nw04/helpdata/en/17/86c039c7811f11e10000000a114084/frameset.htm

Thanks

Seshu

kai_gutenkunst
Active Contributor
0 Kudos

Hi,

instead of using the cl_igs_chart have a look at class cl_gui_chart_engine.

In your dynpro create two custom containers, then create two instances of cl_gui_chart_engine and assign them to their corresponding container (see parameter parent of the constructor).

BTW, for creating the customizing XML you should use the SAP Chart Designer (see SDN - Downloads - WebAS - SAP Chart Designer).

Regards, Kai

0 Kudos

Thank you for help, but in my SAP R3 Enterprise 4.71, I don't have the class named cl_gui_chart_engine, I have cl_gui_chart only.

Message was edited by:

Slash Jiang

0 Kudos

Hi,

with cl_igs_chart you could easily extend the demo report GRAPHICS_IGS_CHART_TEST: in the current implementation it uses cl_igs_chart to create an image that is afterwards displayed as part of an HTML page using cl_gui_html_viewer; creating two charts and displaying both in the same HTML page should be an easy job.

Regards, Kai