<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Bar charts using Graphical Framework. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bar-charts-using-graphical-framework/m-p/6262414#M1385263</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using Graphical Frameworks(GFW) to create a chart Graphic . There is no problem with the data displayed on the bar graph .The problem is that Y-axis of the chart resizes in function to the maximum bar value.&lt;/P&gt;&lt;P&gt;For example, if I execute the report and click on the link to view the Bar Graph, it shows Y-axis up to 120 as the maximum bar value was 100. However, if I change the maximum bar value from 100 to 80 the Y-Axis resizes to 100. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to know if it's possible to fix the Y-Axis size to 100 irrespective of the value being displayed. I have disabled the automatic  Maximum column value calculation using the method IF_CUSTOMIZING~SET of Class CL_CU_AXIS. The attribute I am passing is CO_MAX_VALUE_AUTO and the value is space(To disable). Then I set the maximum column value to 100 using the same method and class with the attribute passed being CO_MAX_VALUE. But this is not working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help needed urgently.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sapna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Oct 2009 06:59:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-22T06:59:24Z</dc:date>
    <item>
      <title>Bar charts using Graphical Framework.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bar-charts-using-graphical-framework/m-p/6262414#M1385263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using Graphical Frameworks(GFW) to create a chart Graphic . There is no problem with the data displayed on the bar graph .The problem is that Y-axis of the chart resizes in function to the maximum bar value.&lt;/P&gt;&lt;P&gt;For example, if I execute the report and click on the link to view the Bar Graph, it shows Y-axis up to 120 as the maximum bar value was 100. However, if I change the maximum bar value from 100 to 80 the Y-Axis resizes to 100. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to know if it's possible to fix the Y-Axis size to 100 irrespective of the value being displayed. I have disabled the automatic  Maximum column value calculation using the method IF_CUSTOMIZING~SET of Class CL_CU_AXIS. The attribute I am passing is CO_MAX_VALUE_AUTO and the value is space(To disable). Then I set the maximum column value to 100 using the same method and class with the attribute passed being CO_MAX_VALUE. But this is not working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help needed urgently.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sapna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 06:59:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bar-charts-using-graphical-framework/m-p/6262414#M1385263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T06:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Bar charts using Graphical Framework.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bar-charts-using-graphical-framework/m-p/6262415#M1385264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this logic it may help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT Z_3DGRAPH.&lt;/P&gt;&lt;P&gt;*structure declaration for performance measurement&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_performance,&lt;/P&gt;&lt;P&gt;      company(15) TYPE c,&lt;/P&gt;&lt;P&gt;      q1 TYPE i,&lt;/P&gt;&lt;P&gt;      q2 TYPE i,&lt;/P&gt;&lt;P&gt;      q3 type i,&lt;/P&gt;&lt;P&gt;      q4 type i,&lt;/P&gt;&lt;P&gt;      END OF ty_performance.&lt;/P&gt;&lt;P&gt;*structure declaration for options table&lt;/P&gt;&lt;P&gt;types : BEGIN OF ty_opttable,&lt;/P&gt;&lt;P&gt;        options(30) TYPE c,&lt;/P&gt;&lt;P&gt;        END OF ty_opttable.&lt;/P&gt;&lt;P&gt;*Internal table and work area declarations&lt;/P&gt;&lt;P&gt;DATA: it_performance TYPE STANDARD TABLE OF ty_performance,&lt;/P&gt;&lt;P&gt;      wa_performance TYPE ty_performance.&lt;/P&gt;&lt;P&gt;DATA : it_opttable type standard table of ty_opttable,&lt;/P&gt;&lt;P&gt;       wa_opttable type ty_opttable.&lt;/P&gt;&lt;P&gt;*initialization event&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;*start of selection event&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*clearing the work areas&lt;/P&gt;&lt;P&gt;CLEAR WA_PERFORMANCE.&lt;/P&gt;&lt;P&gt;CLEAR wa_opttable.&lt;/P&gt;&lt;P&gt;*appending values into the performance internal table&lt;/P&gt;&lt;P&gt;wa_performance-company = 'Company A'.&lt;/P&gt;&lt;P&gt;wa_performance-q1      = 78.&lt;/P&gt;&lt;P&gt;wa_performance-q2      = 68.&lt;/P&gt;&lt;P&gt;wa_performance-q3      = 79.&lt;/P&gt;&lt;P&gt;wa_performance-q4      = 80.&lt;/P&gt;&lt;P&gt;append wa_performance to it_performance.&lt;/P&gt;&lt;P&gt;wa_performance-company = 'Company B'.&lt;/P&gt;&lt;P&gt;wa_performance-q1      = 48.&lt;/P&gt;&lt;P&gt;wa_performance-q2      = 68.&lt;/P&gt;&lt;P&gt;wa_performance-q3      = 69.&lt;/P&gt;&lt;P&gt;wa_performance-q4      = 70.&lt;/P&gt;&lt;P&gt;append wa_performance to it_performance.&lt;/P&gt;&lt;P&gt;wa_performance-company = 'Company C'.&lt;/P&gt;&lt;P&gt;wa_performance-q1      = 78.&lt;/P&gt;&lt;P&gt;wa_performance-q2      = 48.&lt;/P&gt;&lt;P&gt;wa_performance-q3      = 79.&lt;/P&gt;&lt;P&gt;wa_performance-q4      = 85.&lt;/P&gt;&lt;P&gt;append wa_performance to it_performance.&lt;/P&gt;&lt;P&gt;*appending values into the options internal table&lt;/P&gt;&lt;P&gt;wa_opttable-options = 'P3TYPE = TO'.&lt;/P&gt;&lt;P&gt;APPEND wa_opttable TO it_opttable.&lt;/P&gt;&lt;P&gt;wa_opttable-options = 'P2TYPE = VB'.&lt;/P&gt;&lt;P&gt;APPEND wa_opttable TO it_opttable.&lt;/P&gt;&lt;P&gt;wa_opttable-options = 'TISIZE = 1'.&lt;/P&gt;&lt;P&gt;APPEND wa_opttable TO it_opttable.&lt;/P&gt;&lt;P&gt;*calling the graph function module&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GRAPH_MATRIX_3D'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      col1      = 'Quarter 1'&lt;/P&gt;&lt;P&gt;      col2      = 'Quarter 2'&lt;/P&gt;&lt;P&gt;      col3      = 'Quarter 3'&lt;/P&gt;&lt;P&gt;      col4      = 'Quarter 4'&lt;/P&gt;&lt;P&gt;       dim1      = 'In Percentage%'&lt;/P&gt;&lt;P&gt;      set_focus = 'X'&lt;/P&gt;&lt;P&gt;      titl      = 'Company Performances'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      data      = it_performance&lt;/P&gt;&lt;P&gt;      opts      = it_opttable&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      others    = 1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 07:03:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bar-charts-using-graphical-framework/m-p/6262415#M1385264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T07:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Bar charts using Graphical Framework.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bar-charts-using-graphical-framework/m-p/6262416#M1385265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Goutam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am in a support project and the object has already been developed using GFW by creating graphics proxy using interface IF_GRAPHIC_PROXY and various attributes in it . Customizing for Bar charts is also done using attributes and methods of class CL_CU_DISPLAY_CONTEXT. Now the client wants the Y axis displayed to be fixed to 100 irrespective of the data . So for this purpose am using attributes of the class CL_CU_AXIS which contains all attributes of an axis .But unfortunately itu2019s not working . So can you provide any insight for the method that we have used . I canu2019t be using the Function module u2018'GRAPH_MATRIX_3Du2019. I have checked the sample SAP program u2018GFW_PROG_TUTORIALu2019 but didnu2019t get any solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 08:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bar-charts-using-graphical-framework/m-p/6262416#M1385265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T08:39:13Z</dc:date>
    </item>
  </channel>
</rss>

