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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
ileana2019
Frequent Visitor

Charticulator custom Gantt Chart

Hello,

I would like to create the following Gantt Chart using the Charticulator tool:https://charticulator.com/app/index.html

 

Gantt Chart.png

I have the following sample data:

ProjectStart DateEnd DateMilestone DateMilestone StatusResource
Project 110.03.202224.09.202213.04.2022DoneResource 1
Project 210.01.202224.10.202213.05.2022Not DoneResource 2
Project 317.05.202224.11.202213.06.2022LateResource 1
Project 421.01.202224.01.202313.07.2022Not DoneResource 2
Project 525.06.202228.11.202213.08.2022DoneResource 2

 

Is that even possible?

 

Thank you!

4 REPLIES 4
lbendlin
Super User
Super User

Your sample data doesn't match the picture. The picture suggests that project 1 was put on hiatus and then restarted?

Hi @lbendlin , Thanks for noticing, that was a design misunderstanding. I fixed the image.

Still doesn't match.  Your Project 1 shows three milestones in the picture but only one in the sample data.

 

You will need separate data points for Project Start/Project End and Milestones. For example:

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCijKz0pNLlEwVNJRMjTQMzDWMzIwMgJyjEz0DCxhHENjPQMTGMclPy8VSAWlFueXFiWnArXG6iAMMoIaZIhkEJCPZJApjOOXX6KAbpgRimHGIC3mSFpAhhkiG2YG4/gkluBxlQlIryGqqyAcY6hB5sS7yhSk3xTJbiMLNFdZ4AoroEGxAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Project = _t, #"Start Date" = _t, #"End Date" = _t, #"Milestone Date" = _t, #"Milestone Status" = _t, Resource = _t]),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Project", "Resource", "Milestone Status"}, "Attribute", "Value")
in
    #"Unpivoted Other Columns"
How to use this code: Create a new Blank Query. Click on "Advanced Editor". Replace the code in the window with the code provided here. Click "Done".

Hi @lbendlin ,

I run your query to generate data, the result is this:

ProjectMilestone StatusResourceAttributeValue

Project 1DoneResource 1Start Date10.03.2022
Project 1DoneResource 1End Date24.09.2022
Project 1DoneResource 1Milestone Date13.04.2022
Project 2Not DoneResource 2Start Date10.01.2022
Project 2Not DoneResource 2End Date24.10.2022
Project 2Not DoneResource 2Milestone Date13.05.2022
Project 3LateResource 1Start Date17.05.2022
Project 3LateResource 1End Date24.11.2022
Project 3LateResource 1Milestone Date13.06.2022
Project 4Not DoneResource 2Start Date21.01.2022
Project 4Not DoneResource 2End Date24.01.2023
Project 4Not DoneResource 2Milestone Date13.07.2022
Project 5DoneResource 2Start Date25.06.2022
Project 5DoneResource 2End Date28.11.2022
Project 5DoneResource 2Milestone Date13.08.2022

 

Still my question remains: is it possible to create that type of Gantt chart using the Charticulator tool?

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.

Top Solution Authors