pierrej Report post Posted September 17, 2008 Hello everybody! First, please excuse me for my english, I'm a french developer ! ^^ I have a question about fusionchart and I hope I'm at the right place to put my question: How can I modify the colors in each columns of this graphic: column3D.swf? What is the code in the xml file? Indeed, when we generate a column3D graphic, the colors are : - first blue, - yellow, - green, - ... for example, I want to modify blue to black and yellow to red How can I do this please? Thank you! Pierre Share this post Link to post Share on other sites
Arindam Report post Posted September 17, 2008 Hi, Could you please use color attribute for that? <Chart > <set value="20" label="class 1" color='000000' /> <set value="40" label="class 2" color='FF0000' /> <set value="90" label="class 3" color='1af120' /> </Chart> Share this post Link to post Share on other sites
pierrej Report post Posted September 17, 2008 Thanks you! In my php code I write this: $se_t->setAttributeNode (new DOMAttr('color','FF5904')); Et Share this post Link to post Share on other sites