Forum Discussion
Multiple stacked column chart
Hey Anonymous ,
unfortunately, this kind of visual is not supported at the moment.
But maybe you can create your own visual using Charticulator: https://charticulator.com/
Regards,
Tom
TomMartens Is there any other option available in PBI to acheive this kind of reporting.
OR
can i show my YTD bar in different color
- TomMartens6 years agoSuper User
Hey Anonymous ,
you can control the fill color of a column/bar by using conditional formatting.
To change the color of the columns from this:
to this
I created this measure:
Measure 2 = var _category = MAX('Dimension Customer'[Category]) var fillColor = IF(_category = "N/A" , "red" , "#808782") return fillColorWhat the measure does is this:
It reads the current value of the column Category by using the MAX(...) function. The column is used as inner axis-label.
If the current value equals "N/A" then the color "red" should be used, otherwise a hexcode.
I applied the measure for the conditional formatting by changing the data colors option of the chart:
Hopefully, this provides what you are looking for.
Regards,
Tom
- Anonymous6 years agoNot applicable
- TomMartens6 years agoSuper User
Hey Anonymous ,
you can't use the measure as legend or axis.
You have to change the Data colors formatting option of the chart, see the screenshots inside my previous answer.
Regards,
Tom