Forum Discussion

GrimReaperX's avatar
GrimReaperX
Icon for Helper II rankHelper II
4 years ago
Solved

Making shadowed stacked column chart with slicers

Hello guys,  I am trying to figure out how to create a stacked column chart reflecting a shadow connected dynamically with slicers ? I've seen it in the Gartner Life Expectancy dashboard which is as...
  • v-yanjiang-msft's avatar
    v-yanjiang-msft
    4 years ago

    Hi GrimReaperX ,

    You can apply different colors on the chart based on your condition, for example in my sample, I modify the color formula like this:

    Measure =
    IF (
        MAX ( 'Table'[Column1] ) >= MAX ( 'Table 2'[Column1] ),
        "Grey",
        IF (
            MAX ( 'Table'[Column1] )
                >= MAX ( 'Table 2'[Column1] ) - 5,
            "Orange",
            "Blue"
        )
    )
    

    Get the result. But in the slicer, the text can't be hided, it's by design.

    I attach my sample below for reference.

     

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.