﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>FusionCharts Forum / FusionCharts v3 / Using FusionCharts / XML Issue  / Yaxis Name &amp; Stepping Bug / Latest Posts</title><generator>InstantForum.NET v4.1.4</generator><description>FusionCharts Forum</description><link>http://www.fusioncharts.com/forum/</link><webMaster>support@fusioncharts.com</webMaster><lastBuildDate>Wed, 07 Jan 2009 17:17:44 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Yaxis Name &amp; Stepping Bug</title><link>http://www.fusioncharts.com/forum/Topic864-29-1.aspx</link><description>For reference, the issue was due to a typo in my code.... 'numvdivlines' should be 'numdivlines' keyword.&lt;/P&gt;&lt;P&gt;Thanks for your help Pallav, your excellent support will be factored into a possible upgrade to an enterprise version. &lt;/P&gt;&lt;P&gt;- Mike</description><pubDate>Wed, 25 Apr 2007 12:20:35 GMT</pubDate><dc:creator>flex101101</dc:creator></item><item><title>RE: Yaxis Name &amp; Stepping Bug</title><link>http://www.fusioncharts.com/forum/Topic864-29-1.aspx</link><description>So I was able to resolve the initial stepping issue by using the following code in the chart tag: &lt;/P&gt;&lt;P&gt;[code]yAxisMinValue='0' yAxisMaxValue='3.5' adjustDiv='0' numDivLines='6'[/code]&lt;/P&gt;&lt;P&gt;Which gave me the following along the y Axis:&lt;/P&gt;&lt;P&gt;0, .5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5 with the numDivLines='6' representing the 6 values between the coded Y min/max values for total of 8 y axis values. &lt;/P&gt;&lt;P&gt;I have run into a similar issue again and the method used last time is not working. Using the following code:&lt;/P&gt;&lt;P&gt;[code]yAxisMaxValue='135' yAxisMinValue='105' numvdivlines='5' adjustDiv='0'[/code]&lt;/P&gt;&lt;P&gt;Should yield  105, 110, 115, 120, 125, 130, 135, along the y axis &lt;/P&gt;&lt;P&gt;Instead I get: &lt;/P&gt;&lt;P&gt;105, 111, 117, 123, 129, 135&lt;/P&gt;&lt;P&gt;For some reason a y Axis values is missing as well as being incremented by 6 instead of 5. What is the issue?&lt;/P&gt;&lt;P&gt;Below is the complete code for reference:&lt;/P&gt;&lt;P&gt;[code]var strXML:String = "&amp;lt;chart caption='Volume' yAxisMaxValue='135' yAxisMinValue='105' numvdivlines='5' adjustDiv='0'  showShadow='1' bgAlpha='5' showCanvasBase='1' showCanvasBg='1' showToolTip='0' plotSpacePercent='50' xAxisName='Year' yAxisName='Procedures' baseFont='arial' baseFontSize='14' palette='2' shownames='1' showvalues='0' decimals='0'&amp;gt;";&lt;BR&gt;//Add simple data for demo.&lt;BR&gt;strXML = strXML + "&amp;lt;categories&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;category label='2002' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;category label='2003' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;category label='2004' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;category label='2005' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;category label='2006' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;/categories&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;dataset color='0f5c9f' showValues='0'&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;set value='131' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;set value='119' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;set value='116' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;set value='122' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;set value='124' /&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;/dataset&amp;gt;";&lt;BR&gt;strXML = strXML + "&amp;lt;/chart&amp;gt;";[/code]</description><pubDate>Wed, 25 Apr 2007 09:16:11 GMT</pubDate><dc:creator>flex101101</dc:creator></item><item><title>RE: Yaxis Name &amp; Stepping Bug</title><link>http://www.fusioncharts.com/forum/Topic864-29-1.aspx</link><description>I got the y axis label issue resolved, but could you give me an example of code which will give me the Y axis values I listed earlier. I tried adding the value you listed but this did not resolve the issue. Could you give me a complete code example?</description><pubDate>Tue, 24 Apr 2007 08:11:36 GMT</pubDate><dc:creator>flex101101</dc:creator></item><item><title>RE: Yaxis Name &amp; Stepping Bug</title><link>http://www.fusioncharts.com/forum/Topic864-29-1.aspx</link><description>For y-axis name problem, please see &lt;A href="http://www.fusioncharts.com/docs/Contents/Flash_Rotated.html"&gt;http://www.fusioncharts.com/docs/Contents/Flash_Rotated.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For div lines, please set &amp;lt;chart adjustDiv='0' ..&amp;gt;</description><pubDate>Mon, 23 Apr 2007 23:00:35 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>Yaxis Name &amp; Stepping Bug</title><link>http://www.fusioncharts.com/forum/Topic864-29-1.aspx</link><description>I love fusion charts, such a great extension of the features set in Flash via AS 2.0. &lt;P&gt;To my problems, I have been having a couple of issues with fusion charts thus far: &lt;/P&gt;&lt;P&gt;In all the charts I have made so far I cannot get a single chart to show the YAxisName, what am I doing wrong? Even if I remove all the other items and just try to specify the y axis name only the chart will apear with everything working fine but the yaxisname is always missing. &lt;/P&gt;&lt;P&gt;strXML = strXML + "&amp;lt;chart yAxisName='test'&amp;gt;";&lt;/P&gt;&lt;P&gt;var strXML:String = "";&lt;BR&gt;//Add simple data for demo.&lt;/P&gt;&lt;P&gt; [code]strXML = strXML + "&amp;lt;chart yAxisName=Statistic Group 1&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;categories&amp;gt; ";&lt;BR&gt; strXML = strXML + "&amp;lt;category label='2002' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;category label='2003' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;category label='2004' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;category label='2005' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;category label='2006' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;/categories&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;dataset seriesName='1.6% Test' color='0f5c9f' showValues='0'&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='2.5' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='0.6' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='2' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='0.8' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='1.6' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;/dataset&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;dataset seriesname='2.3% STS Benchmark' renderAs='Line' showValues='0'&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='3.3' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='2.9' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='2.6' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='2.5' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;set value='2.3' /&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;/dataset&amp;gt;";&lt;BR&gt; strXML = strXML + "&amp;lt;/chart&amp;gt;";&lt;BR&gt;[/code]&lt;/P&gt;&lt;P&gt;The other problem I have is when I try to specify the stepping values that should show up along the left hand side of a chart. I have tried....&lt;BR&gt;[code] &amp;lt;chart yAxisMinValue='0' yAxisMaxValue='3.5' numDivLines='5' decimals='2' yAxisValuesDecimals='2'&amp;gt; &lt;FONT size=1&gt;&lt;BR&gt;&lt;/FONT&gt;[/code]&lt;/P&gt;&lt;P&gt;This should give me 0, .5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5....yet all I get is 0 at the bottom and 3.5 at the top everything in between is blank.  </description><pubDate>Mon, 23 Apr 2007 13:01:52 GMT</pubDate><dc:creator>flex101101</dc:creator></item></channel></rss>