Home Forums Reporting Services SSRS 2012 Conditionally set line color in chart to "No Color"? RE: Conditionally set line color in chart to "No Color"?

  • I solved it!

    By looking at the underlying xml code, I discovered that No Color is set to [font="Courier New"]#00ffffff[/font]

    So, the following expression now sets the Fill color property of the line to be either No Color or Blue.

    =iif(Parameters!prmShowLine.Value=0,"#00ffffff","Blue")

    Hope this helps someone else who may be struggling with a similar problem.

    --Pete