How to give Custome Color for Pie Chart .

  • Pie chart colour

    I have 3 Status of the students records(pass, fail , Pending) ,display % ge in the pie chart,

    I want to give the custom Color code for that Chart.

    (Green for Pass , Yellow for Pending , Red for Fail)

  • Select the "SeriesProperties" for your chart, Go to "Fill"

    Under "Pick color" enter an expression similar to this:

    =Switch(Fields!InstanceStatus.Value="Failes", "Red", Fields!InstanceStatus.Value="Pending", "Yellow", Fields!InstanceStatus.Value="Pass", "Green")

    [font="Verdana"]Markus Bohse[/font]

  • Thanks It's Working.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply