Rajeshwar Report post Posted May 31, 2012 Hi, I want to implement a true Column 3D chart using PHP which represents X,Y,Z dimensions. I have gone through examples and could find all the 3D Column chart examples are on 2D data. For example, if i have data as following, can i implement real 3D column chart which takes these X,Y,Z on X-axis, Y-Axis, Z-Axis and draw 3D chart? X Y Z 1 2 3 1 3 4 2 4 5 2 5 6 Share this post Link to post Share on other sites
Guest Sumedh Report post Posted May 31, 2012 Hi, I want to implement a true Column 3D chart using PHP which represents X,Y,Z dimensions. I have gone through examples and could find all the 3D Column chart examples are on 2D data. For example, if i have data as following, can i implement real 3D column chart which takes these X,Y,Z on X-axis, Y-Axis, Z-Axis and draw 3D chart? X Y Z 1 2 3 1 3 4 2 4 5 2 5 6 Hi, Separate Colum 3D chart with true 3D capabilities is available. You would need to write your own logic to implement it. However, you can display only column chart in True 3D chart (MSCombi 3D). You would need to only specify single data-set and render it as column against category elements. Ref. Code: <dataset seriesName="Analysis" renderAs="column" color="BADA66"> For more information, refer the following URL: http://docs.fusionch...SS/Combi3D.html Also find attached screen-shot and illustration for your reference. True3D_PHP.zip Share this post Link to post Share on other sites