|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 12/13/2007 1:42:32 AM
Posts: 2,
Visits: 13
|
|
| Hi all, I want to restrict Y-axis secondary value from 0 to 60. i have use SYAxisMinValue ='0' SYAxisMaxValue ='60' but it is not working......!!! Did anyone know how to resolve this issue??? Thankx in Advance.  Regards, Swapnil.
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: 7/29/2008 12:15:49 PM
Posts: 2,001,
Visits: 474
|
|
Hi,
Which SWF are you using?
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 1/2/2008 11:36:05 AM
Posts: 1,
Visits: 2
|
|
Hi,
I have the same problem.
I'm using FCF_MSColumn2DLineDY.swf (free version)
Thnak you in advance
Stephane Melan
Wylesight
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: 7/29/2008 12:15:49 PM
Posts: 2,001,
Visits: 474
|
|
Hi,
When trying to restrict any axis, you need to make sure that any data values that are drawn against that axis do not violate the user defined axis limits.
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 2/1/2008 10:36:03 PM
Posts: 3,
Visits: 5
|
|
I am having a similar problem. I'm also am using FCF_MSColumn2DLineDY.swf (free version) The PYAxisMinValue, PYAxisMaxValue, SYAxisMinValue and SYAxisMaxValue seems to be ignored even though explicitly stated. The min and max values seem to be getting automatically calculated. All data values for the primary are within it's limits (59 -> 71)and all values for the secondary are within it's limits (-16 -> 15) Here's my graph statement: <graph xAxisName='Time' PYAxisName='Inside Temp (deg. F)' SYAxisName='Outside Temp.' bgColor='C5B470' canvasBgColor='C5B470' rotateNames='1' numdivlines='11' showValues='0' decimalPrecision='0' bgcolor='F3f3f3' bgAlpha='70' showColumnShadow='1' showShadow='0' divlinecolor='c5c5c5' divLineAlpha='60' showAlternateHGridColor='1' alternateHGridColor='f8f8f8' alternateHGridAlpha='60' PYAxisMinValue='59' PYAxisMaxValue='71' SYAxisMinValue='-16' SYAxisMaxValue='15'> The chart ends up with a primary min/max of -13 -> 71 and the secondary min/max is -16 -> 70.
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 2/1/2008 10:36:03 PM
Posts: 3,
Visits: 5
|
|
Anyone... Any ideas???? RAM1950 (1/19/2008)
I am having a similar problem. I'm also am using FCF_MSColumn2DLineDY.swf (free version) The PYAxisMinValue, PYAxisMaxValue, SYAxisMinValue and SYAxisMaxValue seems to be ignored even though explicitly stated. The min and max values seem to be getting automatically calculated. All data values for the primary are within it's limits (59 -> 71)and all values for the secondary are within it's limits (-16 -> 15) Here's my graph statement: <graph xAxisName='Time' PYAxisName='Inside Temp (deg. F)' SYAxisName='Outside Temp.' bgColor='C5B470' canvasBgColor='C5B470' rotateNames='1' numdivlines='11' showValues='0' decimalPrecision='0' bgcolor='F3f3f3' bgAlpha='70' showColumnShadow='1' showShadow='0' divlinecolor='c5c5c5' divLineAlpha='60' showAlternateHGridColor='1' alternateHGridColor='f8f8f8' alternateHGridAlpha='60' PYAxisMinValue='59' PYAxisMaxValue='71' SYAxisMinValue='-16' SYAxisMaxValue='15'> The chart ends up with a primary min/max of -13 -> 71 and the secondary min/max is -16 -> 70.
|
|
|
|
|
Supreme Being
      
Group: Moderators
Last Login: Today @ 4:23:50 AM
Posts: 738,
Visits: 1,187
|
|
| hi, Can you please try this XML with FCF_MSColumn2DLineDY.swf. I am using your settings only. <graph xAxisName='Time' PYAxisName='Inside Temp (deg. F)' SYAxisName='Outside Temp.' bgColor='C5B470' canvasBgColor='C5B470' rotateNames='1' numdivlines='11' showValues='0' decimalPrecision='0' bgcolor='F3f3f3' bgAlpha='70' showColumnShadow='1' showShadow='0' divlinecolor='c5c5c5' divLineAlpha='60' showAlternateHGridColor='1' alternateHGridColor='f8f8f8' alternateHGridAlpha='60' PYAxisMinValue='59' PYAxisMaxValue='71' SYAxisMinValue='-16' SYAxisMaxValue='15'> <categories> <category name='March' /> <category name='April' /> <category name='May' /> <category name='June' /> <category name='July' /> </categories> <dataset seriesName='Product A' color='AFD8F8' showValues='0'> <set value='60' /> <set value='61' /> <set value='62' /> <set value='63' /> <set value='68' /> </dataset> <dataset seriesName='Product B' color='F6BD0F' showValues='0' > <set value='70' /> <set value='69' /> <set value='68' /> <set value='67' /> <set value='65' /> </dataset> <dataset seriesName='Total Quantity' color='8BBA00' showValues='0' parentYAxis='S' > <set value='-5' /> <set value='-14' /> <set value='14' /> <set value='10' /> <set value='12' /> </dataset> </graph>
Regards,
Sudipto Choudhury FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 2/1/2008 10:36:03 PM
Posts: 3,
Visits: 5
|
|
That works. It looks like the only change I really have to make is to NOT specify parentYAxis='P' in the dataset definition lines for the 'primary' variables. Thanks much!!! Dick
|
|
|
|