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: 

is it possible to draw an radar chart in SAP GUI?

Former Member
0 Kudos

Hi, expert,

i can only find ways to draw column or pie chart, is it possible to draw an radar chart in SAP GUI using ABAP (NOT webdynpro)

thanks and best regards.

Jun

1 ACCEPTED SOLUTION

kai_gutenkunst
Active Contributor
0 Kudos

Hi,

yes, use the chart engine (class cl_gui_chart_engine). Just have a look at the demo report graphics_gui_ce_demo (and download the SAP Chart Designer from SDN - Downloads - WebAS to get some documentation about the chart engine XML format).

If you want to quickly check the radar chart with this report please note that it restricted to columns / lines only. Therefore you can easily copy the report, remove the code line that restricts the list of available chart types (look for l_win_chart->restrict_chart_types( charttypes = 'Columns|Lines' )) and run it. Now changing the chart type to Radar can be done interactively.

Regards, Kai

1 REPLY 1

kai_gutenkunst
Active Contributor
0 Kudos

Hi,

yes, use the chart engine (class cl_gui_chart_engine). Just have a look at the demo report graphics_gui_ce_demo (and download the SAP Chart Designer from SDN - Downloads - WebAS to get some documentation about the chart engine XML format).

If you want to quickly check the radar chart with this report please note that it restricted to columns / lines only. Therefore you can easily copy the report, remove the code line that restricts the list of available chart types (look for l_win_chart->restrict_chart_types( charttypes = 'Columns|Lines' )) and run it. Now changing the chart type to Radar can be done interactively.

Regards, Kai