KiwiBruce Report post Posted May 28, 2012 Not Sure where to ask this, so I will try here. Is it possible to have a single series chart where all the bars are one color. If so, how? I can't work out how. I have been able to achieve this with other charting tools but I am at a loss to find any setting in Fusion. This is what I have now (Chart_multicolor.PNG) What I am looking for is this (Chart_singlecolor.PNG) (Minus the 3D and also with the glass effect as in the first image... but you get the idea ) Any help would be most gratefully received Thanks Bruce Share this post Link to post Share on other sites
Guest Sumedh Report post Posted May 29, 2012 Not Sure where to ask this, so I will try here. Is it possible to have a single series chart where all the bars are one color. If so, how? I can't work out how. I have been able to achieve this with other charting tools but I am at a loss to find any setting in Fusion. This is what I have now (Chart_multicolor.PNG) What I am looking for is this (Chart_singlecolor.PNG) (Minus the 3D and also with the glass effect as in the first image... but you get the idea ) Any help would be most gratefully received Thanks Bruce Hi, You can apply same color to all the bars using color attribute. Use this attribute to specify color for the data item. This attribute accepts hex color codes without #. Ref. Code: <chart ...> <set label='Jan' value='420000' color='6699CC'/> <set label='Feb' value='910000' color='6699CC'/> . . <set label='Mar' value='720000' color='6699CC'/> </chart> To remove gradient effect, you would need to set plotGradientColor attribute as null. Ref. Code: <chart ... potGradientColor=" "> For more information, read here: http://docs.fusioncharts.com/charts/contents/?ChartSS/Bar2D.html Also, find attached screen-shot for your reference. Share this post Link to post Share on other sites