reporting services, colors of stack chart

  • Thread starter Thread starter taub
  • Start date Start date
T

taub

Hi
I’m trying to change the colors of a stack chart in a report of
reporting services.
I know that I can change the palette but I want to choose the color
manually.
Any idea if I can do that?
Thanks
Tomer.
 
Use the following code on the data value for the chart.
from editing the data, Go to series style, Fill, and then put it in as
the color.

Change the field and series group as appropriate.

=choose(First(Fields!Series.Value,
"chart1_SeriesGroup1"),"#BE0000","#8F5E99","#FFC814","#00EB00","#4646FF",
"#C0C0C0")
 
Back
Top