Gondrong Report post Posted June 2, 2009 I used the normal column 2d chart, how can I change so that the column is all in same color? what is the xml syntax? thanks. Share this post Link to post Share on other sites
saptarshi Report post Posted June 3, 2009 Hello, You can use the 'color' attribute in the 'set' element to set any color to your individual columns in a column 2D chart as follows: If you want to define your own colors for the data items on chart, use this attribute to specify color for the data item. This attribute accepts hex color codes without #. An example of the required XML is given below: <chart caption='Monthly Revenue' xAxisName='Month' yAxisName='Revenue' numberPrefix='$' showValues='0'> <set label='Jan' value='420000' color='FFF000' /> <set label='Feb' value='910000' color='FFF000' /> <set label='Mar' value='720000' color='FFF000' /> Hope this helps. Share this post Link to post Share on other sites
batts Report post Posted June 10, 2009 In a 2d column chart is it possible to change the outline of the bar as well as the fill color? Share this post Link to post Share on other sites
saptarshi Report post Posted June 11, 2009 Hello, The outline of all the columns in a chart can be changed globally using the showPlotBorder attribute in the chart element. <chart ...showPlotBorder='color hex without the #'...> The color of the fill of each column can be change individually using the color attribute in the set element. <set label='labelName' value='number' color='color hex without the #'> Hope this helps. Share this post Link to post Share on other sites