cancel
Showing results for 
Search instead for 
Did you mean: 

abap2xls drawing axis options

Former Member
0 Kudos

Hi,

I have a question about abap2xls drawings. If I create a drawing as line chart, is there any possibility to tell the chart to use as "Axis Options" "Maximum" value a fixed value, at the moment it's always 'Auto'.

  lo_drawing->graph_type = zcl_excel_drawing=>c_graph_line.


Thank you in advance


Juergen Wachter

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Ok,

seems I found it on my own:

CALL METHOD lo_line->create_ax
     EXPORTING
       ip_type = zcl_excel_graph_line=>c_valax
       ip_majortickmark = '100'.

Maybe someone needs it.


Thank you


Juergen Wachter

Former Member
0 Kudos

Too fast, seems this doesn't work.

Juergen Wachter