nomori Report post Posted June 1, 2010 (edited) The value of Primary-Y-axis Values and Secondry-Y-axis Values disappears when setting it as follows. My XML code: <chart showValues='0' showDivLineSecondaryValue='1' showYAxisValues='1' showSecondaryLimits ='0' yAxisValuesStep ='50' SYAxisMaxValue ='150' > <categories> <category label='??'/> <category label='??'/> </categories> <dataset seriesName='??'> <set value='17258231' /> <set value='5414412' /> </dataset> <dataset seriesName='??'> <set value='15845440' /> <set value='4047458' /> </dataset> <dataset seriesName='???' renderAs='column' parentYAxis='S'> <set value='91.8138133624472' /> <set value='74.7534173609249' /> </dataset> <trendLines> <line valueOnRight='1' parentYAxis='S' startValue='100' color='FF0000' displayValue='100' dashed='1'/> </trendLines> </chart> Are there an attribute etc. that should be set at the same time? Edited June 1, 2010 by Guest Share this post Link to post Share on other sites
Sanjukta Report post Posted June 2, 2010 (edited) Hi, The value of Primary-Y-axis Values and Secondry-Y-axis Values are not displayed because of the other attribute yAxisValuesStep ='50' in the <chart> element. The attribute yAxisValuesStep ='50' specifies the number of div line values you wish to skip in the chart. Here '50' specifies to skip 50 div line values and display every 51st value on the chart. As you do not have so many div lines to display so all the values seem to disappear. Please try setting a smaller value for the attribute. Ref.- <chart showValues='0' showLabels='1' showDivLineSecondaryValue='1' showYAxisValues='1' showSecondaryLimits ='1' yAxisValuesStep ='2' SYAxisMaxValue ='150' > Hope this resolves your issue. Edited June 2, 2010 by Guest Share this post Link to post Share on other sites
nomori Report post Posted June 2, 2010 (edited) Hi! Sanjukta I got it! And I was able to want to do. Thank you for your help. Edited June 2, 2010 by Guest Share this post Link to post Share on other sites
Sanjukta Report post Posted June 2, 2010 Hi, You are most welcome. Glad that your issue is resolved. Please feel free to revert in case you have further queries. Happy FusionCharting! Share this post Link to post Share on other sites