woodstock11
Members-
Content count
11 -
Joined
-
Last visited
About woodstock11
-
Rank
Junior Member
-
The issue I'm having is with using the dataXML method, not dataURL like your example (and without javascript). Seems to work with every other chart type it seems except bubble. Thanks for your reply
-
Seem to get an error with xml for a bubble charts.. any ideas? <html> <body bgcolor="#ffffff"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="900" height="300" id="Column3D" > <param name="movie" value="http://www.mywebsite.com/Fusion/Charts/Bubble.swf" /> <param name="FlashVars" value="&dataXML=<chart palette='3' numberPrefix='$' is3D='1' animation='1' clipBubbles='1' xAxisMaxValue='100' showPlotBorder='0' xAxisName='Stickiness' yAxisName='Cost Per Service' chartRightMargin='30'> <categories> <category label='0%' x='0' /> <category label='20%' x='20' showVerticalLine='1' /> <category label='40%' x='40' showVerticalLine='1' /> <category label='60%' x='60' showVerticalLine='1' /> <category label='80%' x='80' showVerticalLine='1' /> <category label='100%' x='100' showVerticalLine='1' /> </categories> <dataSet showValues='0'> <set x='30' y='1.3' z='116' name='Traders' /> <set x='32' y='3.5' z='99' name='Farmers' /> <set x='8' y='2.1' z='33' name='Individuals' /> <set x='62' y='2.5' z='72' name='Medium Business Houses' /> <set x='78' y='2.3' z='55' name='Corporate Group A' /> <set x='75' y='1.4' z='58' name='Corporate Group C' /> <set x='68' y='3.7' z='80' name='HNW Individuals' /> <set x='50' y='2.1' z='105' name='Small Business Houses' /> </dataSet> <trendlines> <line startValue='2.5' isTrendZone='0' displayValue='Median Cost' color='0372AB' /> </trendlines> <vTrendlines> <line startValue='0' endValue='60' isTrendZone='1' displayValue='Potential Wins' color='663333' alpha='10' /> <line startValue='60' endValue='100' isTrendZone='1' displayValue='Cash Cows' color='990099' alpha='5' /> </vTrendlines> </chart>"> <param name="quality" value="high" /> </object> </body> </html>
-
A figured it out.. Added this to object: <param name="bgcolor" value="#cccccc" /> thanks.
-
Thanks for the quick response! That made the border white. Looking to make it the same color as the background of the page or removed entirely..
-
This may be an html question rather then fusion charts as I don't see what is causing this? There is a dark grey border around the canvas (or object) even though borders are explicitly shut off. Any way to remove this? <html> <head> </head> <body bgcolor="#CCCCCC" style="border:0;scrolling:no;margin:0;text-align: center;"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="630" height="450" align="middle" border="0"> <param name="movie" value="Pie2D.swf" /> <param name="FlashVars" value="&dataXML=<chart caption='Coal Consumption' subCaption='(Source US Department of Energy) Note You can click on and rotate this pie chart!' thousandSeparator=',' showLabels='1' defaultAnimation='0' use3DLighting='0' pieRadius='140' enableRotation='1' bgcolor='CCCCCC' bgAlpha='100' showCanvasBorder='0'> <set label=' China' value='1310000000' isSliced='1' /> <set label=' United States' value='50000000' /> <set label=' India' value='339000000' /> <set label=' Russia' value='298000000' /> <set label=' Germany' value='265000000' /> <set label=' South Africa' value='170500000' /> </chart>" /> </object> </body> </html>