We work with SSRS 2016. I'm wondering is there a possibility to change a tree chart series border color according to color of series? E.g. if chart series color = "Red" then border color = "Blue".
Yes, we can operate colors based on series values using switch function if the values set is limited, like:
=switch(Fields!country.Value = "Europe","#black" ,
Fields!country.Value = "Asia", "#blue",
........, etc.
)
But if values are too many switch is not a solution.
Can you please advice whether it possible to implement expected conditional coloring?
Basically yes, but not the way you want to do it. Lets say your series color expression is the following:
For the border color you can not check for the color, but you can use the same expression again. Like this:
This way your
SeriesA
color is Red and the border is Blue.