Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have reviewed all of the videos and blog posts and I have not been able to create a working Hierarchy chart using either the Akvelon Hierarchy, the new Org Chart or the TreeViz. None of them gives a good description of the data structure requirements to make the chart work. I am trying to create a drillable Bill of Materials chart.
I have tried 3 different data structures with no success. I tried:
My hope was that the single recursive table would do it. I don’t need any measures, just the part numbers in the hierarchical visual. What am I missing?
I have the report in a matrix style, which is OK, but the drillable graphic would be better. Is there somewhere the definitive guide to using any of these charts?
Hi @Anonymous,
It seems like you are using a third party custom visual, I'd like to suggest you direct contact to author to get more support.
Regards,
Xiaoxin Sheng
Is there a MSFT tree chart that is not one of the 3 I've tried? The Org Chart was presented in the PBI June Release video, so I would assume it is endorsed and understood by MSFT.
HI @Anonymous,
As you know, power bi has a custom visual team, they will publish some custom visuals and provide support for their visuals.
For custom visual published by other team or users, you need to contact to author for better support.
Regards,
Xiaoxin Sheng
Again... The Org Chart visual was presented as part of the June release video. If this is not a visual that MSFT can help, with DOES MSFT HAVE A TREE VISTUL THAT IT DOES SUPPORT?
Hi JTucker,
I'm a little late to respond, but i think I'm tackling the same issue as you and I'm sure others will stumble upon your question and want a reasonable response.
I can't find any hierarchy visualisations created by Microsoft, however there are built in DAX functions for recursively building hierarchies and I believe the Akvelon hierarchy visual leverages those DAX functions.
To get either the DAX or the Akvelon visual working you'll need a table with a format like;
Part No | Parent Part No | Part Name | Part Type
You must have a single row for each Part No as a Part No can only have one parent, but a Parent Part No can appear multiple times as it can have multiple children. The Part Name is your 'Title' in the Akvelon visual and 'Type' can be anything you want to dictate a colour scheme and legend.
Additionally, there must be a single root node with a Parent Part No of null, so for your application it might be some kind of artificial "Total System" part to bring the top level parts together.
eg;
Part No | Parent Part No | Part Name | Part Type
0 | null | Total System | Root Node
1 | 0 | Parent Widget 1 | Parent Widget
2 | 0 | Parent Widget 2 | Parent Widget
3 | 1 | Child Widget 1 | Child Widget
4 | 1 | Child Widget 2 | Child Widget
5 | 2 | Child Widget 3 | Child Widget
You can find a working example here;
http://blog.pragmaticworks.com/power-bi-custom-visuals-hierarchy-chart-by-akvelon
Info on the DAX hierarchy functions is here;
Hope this helps.
Cara
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.