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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors