jsteriti Report post Posted March 3, 2009 Hello, I was wondering why FusionCharts do not provide 3D Bar chart. We have Bar 2D and MS Bar 3D but no Bar 3D which may be very useful. Share this post Link to post Share on other sites
Pallav Report post Posted March 5, 2009 MS Bar 3D can be used to build Bar 3D as well. Share this post Link to post Share on other sites
jsteriti Report post Posted March 6, 2009 That is good to know. Thanks for the answer ! Share this post Link to post Share on other sites
jsteriti Report post Posted March 13, 2009 Well bad news...I just tried and the MSBar3D does not accept single-serie XML. I get the message "No Data to display". Share this post Link to post Share on other sites
Rahul Kumar Report post Posted March 14, 2009 (edited) Hi, Could you please try using the XML below? <chart palette='2' caption='Country Comparison' shownames='1' showvalues='0' decimals='0' numberPrefix='$'> <!- Here goes your data labels -> <categories> <category label='Austria' /> <category label='Brazil' /> <category label='France' /> <category label='Germany' /> <category label='USA' /> </categories> <!- Here goes your data values -> <dataset color='F6BD0F' showValues='0'> <set value='57401.85' /> <set value='41941.19' /> <set value='45263.37' /> <set value='117320.16' /> <set value='114845.27' /> </dataset> </chart> Edited March 14, 2009 by Guest Share this post Link to post Share on other sites
jsteriti Report post Posted March 16, 2009 (edited) Well yes it works but the XML you just gave me is a Multiserie XML. If you try with this one it is not gonna work: < chart labelDisplay="Wrap" baseFontSize="10" showValues="0"> < set label="0-30" value="15260.23" /> < set label="31-60" value="1216.51" /> < set label="61-90" value="12253.25" /> < set label="91-120" value="201" /> < /chart> Edited March 16, 2009 by Guest Share this post Link to post Share on other sites
Rahul Kumar Report post Posted March 17, 2009 Hi, Yes it is, but in order to work with MSBar3D chart that work like single series, you would need to create XML like this. Share this post Link to post Share on other sites
jsteriti Report post Posted March 17, 2009 Ok so the work around is to create a multiserie XML with only one dataset...which is equivalent to a singleserie chart at the end. Well I should be able to deal with that. Thanks Share this post Link to post Share on other sites
mentalist Report post Posted July 28, 2010 I've tried using the MSBar3D to create a 3D single series bar chart and it works, but the colours of all the bars are the same. I'm not sure yet how to ensure the colours of each bar are different with a single series multiseries bar chart. Any ideas? Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted July 28, 2010 Hi, Welcome to FusionCharts forum. Please try using the attribute "color" in the <set> element for the same. Ref.- <set label='a' value='20' color'ff0000'/> <set label='b' value='30' color'00ff00'/> <set label='c' value='40' color'0000ff'/> ........... Hope this helps. Share this post Link to post Share on other sites