‎2014 Jun 02 11:56 AM
Hi Experts,
I have copied standard program "GRAPHICS_GUI_CE_DEMO" and make the changes in our 'Z' program. Below is the output.
My requirement is to show some values at the starting of the graph (Like Below in green circle)
Inside this program form "create_data_demo" is filling data for graph.
Please assist me.
Regards
Ashish
‎2014 Jun 05 7:00 AM
Hi,
I think I found the solution .
I used the ChartDesigner to find out what kind of customization is required.
In the progrm Y_R_EITAN_TEST_41_05 note the use of:
CONSTANTS: c_series_01 TYPE string VALUE 'series_01' .
This is the customization id for the series .
Screens:
Regards.
‎2014 Jun 05 7:00 AM
Hi,
I think I found the solution .
I used the ChartDesigner to find out what kind of customization is required.
In the progrm Y_R_EITAN_TEST_41_05 note the use of:
CONSTANTS: c_series_01 TYPE string VALUE 'series_01' .
This is the customization id for the series .
Screens:
Regards.
‎2014 Jun 05 8:57 AM
Hi Ashish,
use this after the specification of your chart type in perform create_custom_demo
l_element = p_ixml_doc->create_simple_element( name = 'ShowLabel' parent = l_series ).
l_element->if_ixml_node~set_value( 'true' ).
and also in perform create_data_demo fill the label like this in lv_value
l_element = p_ixml_doc->create_simple_element( name = 'S' parent = l_series ).
l_element->set_attribute( name = 'label' value = lv_value ).
l_element->if_ixml_node~set_value( lv_value ).
Regards,
Pavan
‎2014 Jun 06 11:25 AM
‎2014 Jun 06 2:33 PM