class ZCL_EXCEL_GRAPH_PIE definition public inheriting from ZCL_EXCEL_GRAPH final create public . public section. *"* public components of class ZCL_EXCEL_GRAPH_PIE *"* do not include other source files here!!! data NS_LEGENDPOSVAL type STRING value 'r'. "#EC NOTEXT . data NS_OVERLAYVAL type STRING value '0'. "#EC NOTEXT . data NS_PPRRTL type STRING value '0'. "#EC NOTEXT . data NS_ENDPARARPRLANG type STRING value 'it-IT'. "#EC NOTEXT . data NS_VARYCOLORSVAL type STRING value '1'. "#EC NOTEXT . data NS_FIRSTSLICEANGVAL type STRING value '0'. "#EC NOTEXT . data NS_SHOWLEGENDKEYVAL type STRING value '0'. "#EC NOTEXT . data NS_SHOWVALVAL type STRING value '0'. "#EC NOTEXT . data NS_SHOWCATNAMEVAL type STRING value '0'. "#EC NOTEXT . data NS_SHOWSERNAMEVAL type STRING value '0'. "#EC NOTEXT . data NS_SHOWPERCENTVAL type STRING value '0'. "#EC NOTEXT . data NS_SHOWBUBBLESIZEVAL type STRING value '0'. "#EC NOTEXT . data NS_SHOWLEADERLINESVAL type STRING value '1'. "#EC NOTEXT . methods SET_SHOW_LEGEND_KEY importing !IP_VALUE type C . methods SET_SHOW_VALUES importing !IP_VALUE type C . methods SET_SHOW_CAT_NAME importing !IP_VALUE type C . methods SET_SHOW_SER_NAME importing !IP_VALUE type C . methods SET_SHOW_PERCENT importing !IP_VALUE type C . methods SET_SHOW_LEADER_LINES importing !IP_VALUE type C . methods SET_VARYCOLOR importing !IP_VALUE type C . protected section. *"* protected components of class ZCL_EXCEL_GRAPH_PIE *"* do not include other source files here!!! private section. *"* private components of class ZCL_EXCEL_GRAPH_PIE *"* do not include other source files here!!! *"* use this source file for the definition and implementation of *"* local helper classes, interface definitions and type *"* declarations *"* use this source file for any type of declarations (class *"* definitions, interfaces or type declarations) you need for *"* components in the private section *"* use this source file for any macro definitions you need *"* in the implementation part of the class METHOD set_show_cat_name. ns_showcatnameval = ip_value. ENDMETHOD. METHOD set_show_leader_lines. ns_showleaderlinesval = ip_value. ENDMETHOD. METHOD set_show_legend_key. ns_showlegendkeyval = ip_value. ENDMETHOD. METHOD set_show_percent. ns_showpercentval = ip_value. ENDMETHOD. METHOD set_show_ser_name. ns_showsernameval = ip_value. ENDMETHOD. METHOD set_show_values. ns_showvalval = ip_value. ENDMETHOD. METHOD set_varycolor. ns_varycolorsval = ip_value. ENDMETHOD.