<?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>Question Re: Dynamic values to y-axis through Applet in Product Lifecycle Management Q&amp;A</title>
    <link>https://community.sap.com/t5/product-lifecycle-management-q-a/dynamic-values-to-y-axis-through-applet/qaa-p/3696783#M17466</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And after properly using the help documentation and script assistant to answer this question, don't forget to make sure GlobalAutoScale is set to false or it will auto scale instead of the static value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeremy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Apr 2008 12:06:39 GMT</pubDate>
    <dc:creator>jcgood25</dc:creator>
    <dc:date>2008-04-18T12:06:39Z</dc:date>
    <item>
      <title>Dynamic values to y-axis through Applet</title>
      <link>https://community.sap.com/t5/product-lifecycle-management-q-a/dynamic-values-to-y-axis-through-applet/qaq-p/3696781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have created a graph using applet now i want to assign y-axis maximum value dynamically through applet .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or i want to assign  value to Display template property Global Max Range .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance &lt;/P&gt;&lt;P&gt;Praveen Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 10:22:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/product-lifecycle-management-q-a/dynamic-values-to-y-axis-through-applet/qaq-p/3696781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T10:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic values to y-axis through Applet</title>
      <link>https://community.sap.com/t5/product-lifecycle-management-q-a/dynamic-values-to-y-axis-through-applet/qaa-p/3696782#M17465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read the documentation for the iChart applet.  The applet properties are fully documented.  Just remember to call document.yourChart.updateChart(false) to redraw the chart after you make any "visual" changes and updateChart(true) if you change anything related to the query.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 11:45:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/product-lifecycle-management-q-a/dynamic-values-to-y-axis-through-applet/qaa-p/3696782#M17465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T11:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic values to y-axis through Applet</title>
      <link>https://community.sap.com/t5/product-lifecycle-management-q-a/dynamic-values-to-y-axis-through-applet/qaa-p/3696783#M17466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And after properly using the help documentation and script assistant to answer this question, don't forget to make sure GlobalAutoScale is set to false or it will auto scale instead of the static value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeremy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 12:06:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/product-lifecycle-management-q-a/dynamic-values-to-y-axis-through-applet/qaa-p/3696783#M17466</guid>
      <dc:creator>jcgood25</dc:creator>
      <dc:date>2008-04-18T12:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic values to y-axis through Applet</title>
      <link>https://community.sap.com/t5/product-lifecycle-management-q-a/dynamic-values-to-y-axis-through-applet/qaa-p/3696784#M17467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem seems similar to the discussed one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you tell me why I can't turn GlobalAutoScale off and redraw the chart right away using updateChart(false)?&lt;/P&gt;&lt;P&gt;I don't want to pull the data once again by updateChart(true) but this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;EM&gt;document.myChart.getChartObject().setGlobalAutoScale(false);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;     &lt;EM&gt;document.myChart.updateChart(false);&lt;/EM&gt;   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;doesn't work out. However, setting another property, e.g. Chart Title works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;EM&gt;document.myChart.getChartObject().setTitle("newName");&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;     &lt;EM&gt;document.myChart.updateChart(false);&lt;/EM&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any chance to change the scaling w/o reloading the data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;Dmitry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 16:49:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/product-lifecycle-management-q-a/dynamic-values-to-y-axis-through-applet/qaa-p/3696784#M17467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T16:49:11Z</dc:date>
    </item>
  </channel>
</rss>

