Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
Anonymous
Not applicable

Building a custom stacked" or "clustered" column

Greering Members .

im trying to build a "stacked" or "clustered" column chart where i can add set different year in my Bar .

 

i made a little exemple of what im trying to acheive : 

 

let's Say i have a total of 5000 Workers . 

 

here is my table for my A+ workers : 

1.PNG

 

 

 

 

and that's what im trying to acheive , the pink bar (Dunno if there is a custom visual that can help me build something similar ) : 

 

2.PNG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Thanks all in advance . 

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@Anonymous You could check for third-party visuals.

 

Also, you could check if R visuals might suffice - https://community.powerbi.com/t5/R-Script-Showcase/bd-p/RVisuals

 

Also, there are Python visuals. 

 

There are also SVG visuals you can create - https://community.powerbi.com/t5/forums/searchpage/tab/message?advanced=false&allow_punctuation=false&filter=location&location=forum-board:QuickMeasuresGallery&q=svg (scroll down on that page)

 

You could create your own custom visual - https://powerbi.microsoft.com/en-us/developers/custom-visualization/

 

Finally, last but not least you could try the Charticulator! - https://charticulator.com/

 

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

HI @Anonymous,

You can try to use the following calculate table formula to summary two table records but column power bi visuals seem not support to directly display the legend on the data label.

Summary =
UNION (
    SELECTCOLUMNS (
        'A+',
        "Category",
            [Year] & "-" & [A+ Worker],
        "Percent", [Percent],
        "Source", "A+ Workers"
    ),
    SUMMARIZE (
        Table,
        "Category", SUMX ( Table, [Workers] ),
        "Percent", 1,
        "Source", "Total"
    )
)

13.png14.png
Perhaps you can try to create a R script to manly plot them on the data label.

Regards,

Xiaoxin Sheng

Greg_Deckler
Community Champion
Community Champion

@Anonymous You could check for third-party visuals.

 

Also, you could check if R visuals might suffice - https://community.powerbi.com/t5/R-Script-Showcase/bd-p/RVisuals

 

Also, there are Python visuals. 

 

There are also SVG visuals you can create - https://community.powerbi.com/t5/forums/searchpage/tab/message?advanced=false&allow_punctuation=false&filter=location&location=forum-board:QuickMeasuresGallery&q=svg (scroll down on that page)

 

You could create your own custom visual - https://powerbi.microsoft.com/en-us/developers/custom-visualization/

 

Finally, last but not least you could try the Charticulator! - https://charticulator.com/

 

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

@Anonymous , I doubt a visual like that

Check custom visual -https://appsource.microsoft.com/en-us/marketplace/apps?product=power-bi-visuals

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.