Sign in to follow this  
Sri Lalitha

Issue while rendering as javascript and flash

Recommended Posts

Iam facing an issue for Dual Yaxis chart while rendering as "flash".

 

For the same xml, chart is rendered in different way when is use setCurrentRenderer('flash') and setCurrentRenderer('javascript').

Here is my Xml:

------------------

 

<chart canvasbgAlpha="0" formatNumberScale="1" sFormatNumberScale="1" sNumberPrefix="$"  borderThickness="0" chartLeftMargin="0" chartRightMargin="0" plotSpacePercent="65" showLegend="1" borderColor="FFFFFF" bgcolor="FFFFFF"  bgalpha="0,0" legendBorderColor="FFFFFF" legendBgColor="FFFFFF" animation="1" legendShadow="0" showShadow="0" caption="" xaxisname="" decimals="1" numberPrefix="" numberSuffix="" sNumberSuffix="" showPlotBorder="0" showAlternateHGridColor="0" plotgradientcolor=""  SyAxisMinValue="0" SyAxisMaxValue="200" PyAxisMinValue="0" PyAxisMaxValue="0" exportCallback="FC_Exported" exportEnabled="1" exportAtClient="0" exportAction="save" exportHandler="http://localhost/app/FCExporter.jsp" exportShowMenuItem="0" showExportDialog="0">,
<categories>,
    <category label="2005"/>,
    <category label="2006"/>,
    <category label="2007"/>,
    <category label="2008"/>,
    <category label="2009"/>,
</categories>,

<dataset parentYAxis='S' renderAs='COLUMN' color="E0A9A8" showValues="0">,
    <set />,<set />,<set />,<set />,
    <set value="2816130"/>,
</dataset>,
<dataset parentYAxis='S' renderAs='LINE' dashed="1" lineDashLen="5" lineDashGap= "6" showValues="0" anchorSides="4" showAnchors="1" anchorRadius="1" anchorBgColor="C0504D" lineThickness="3" color="C0504D" >,
    <set />,<set />,<set />,<set />,
    <set value="2816130"/>,
</dataset>,

<styles><definition>,
<style name='myFont' type='font' color='000000' bold='1'/></definition>
<application>,<apply toObject='legend' styles='myFont'/></application>,
</styles>,

</chart>

 

Please find the attached images when rendered as javscript and flash

post-62769-0-04861200-1404725344_thumb.jpg

post-62769-0-98335500-1404725344_thumb.jpg

Share this post


Link to post
Share on other sites

Hey,

 

Since primary Y axis min and max value are being the same, Y axis values are not visible for Flash whereas JS charts does overrides the specified value.

 

Try removing PyAxisMinValue="0" PyAxisMaxValue="0"  from the chart element.

 

Hope this helps.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this