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")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top