Questions tagged [gantt-chart]

For any issues relating to creating, rendering, and using Gantt charts.

A Gantt chart is a type of bar chart that illustrates a project schedule. Gantt charts illustrate the start and finish dates of the terminal elements and summary elements of a project. Terminal elements and summary elements comprise the work breakdown structure of the project. Some Gantt charts also show the dependency (i.e., precedence network) relationships between activities. Gantt charts can be used to show current schedule status using percent-complete shadings and a vertical "TODAY" line.

https://en.wikipedia.org/wiki/Gantt_chart

831 questions
5
votes
2 answers

How to have gantt chart using python or pyqt

I'm working on a (asset management) system to handle assets , resources and progress of tasks I want to have a gantt chart in my system I'm using python 2.6 and pyqt . Is there any (already made charts python library)? that can work well with…
Moayyad Yaghi
  • 3,622
  • 13
  • 51
  • 67
5
votes
2 answers

Use of dataContext to display info in Gantt Amcharts

I am trying to work out dataContext use in recently released Gantt charts. I want some extra information to be displayed / an event to be fired when user clicks on a bar. I saw how it can be done with a serial graph but I can't make it work for my…
J To
  • 51
  • 2
5
votes
2 answers

How to create a Gantt plot

How is it possible with matplotlib to plot a graph with that data. The problem is to visualize the distance from column 2 to column 3. At the end it should look like a Gantt chart. 0 0 0.016 19.833 1 0 19.834 52.805 2 0 52.806 …
Thor
  • 158
  • 1
  • 1
  • 8
5
votes
6 answers

Looking for a Delphi Gantt chart component

Does anyone have any experience with using a Gantt chart control in Delphi? I'm looking for a native VCL one but ActiveX would also do. I don't have too many requiremetnts other than it looking half decent and has very basic editing. thanks for any…
Jamie
  • 3,150
  • 2
  • 26
  • 35
5
votes
1 answer

algorithm for lines connecting rectangles

I am looking for an algorithm or sample solution for drawing connection lines between rectangles. In my case rectangles are elements Gantt chart and connections show depenedencies. I am using the Raphael JS library to draw rectangles and lines. So a…
sebastian
  • 61
  • 2
5
votes
3 answers

How to create historical Gantt chart in Linux?

I need to create a Gantt timeline with dates from 19th century. Can anybody recommend a program that could handle that?
helcim
  • 789
  • 13
  • 27
4
votes
3 answers

JS microtime vs php microtime

i'm using a plugin for a ganttchart. i feed the plugin with json: Plugin: GitHub - JQuery Gantt { "name": "Zbigniew Kowalski", "desc": "Administrator", "values": [ {"from": "/Date(1310508000000)/", "to": "/Date(1311026400000)/", "desc":…
Jens
  • 345
  • 1
  • 6
  • 19
4
votes
1 answer

How to implement MYSQL data fetching in JS Gantt chart?

I'm using AnyChart’s JS Charts library and I want to implement this with my project data's, I'm using Codeinghter framework and I want to know what's the best way to do this. I know it's very basic but any help is appreciated.…
jobB
  • 411
  • 3
  • 10
4
votes
1 answer

Create a gantt chart in flutter application

I wanted to add a Gantt chart in my flutter application based on the start and end date of any events from the google calendar. But I did not find any articles or packages which can help me to create a Gantt chart. Is there any way or references I…
4
votes
1 answer

Plotting gantt chart using timestamps

I am trying to plot a gantt chart using plotly. The important thing is that horizontal swimlanes can have multiple bars separated in time. I found an example of this using calendar dates (YYYY-MM-DD), and am trying to transition using times…
ScottieB
  • 3,958
  • 6
  • 42
  • 60
4
votes
1 answer

Mermaid Gantt exclude weekends from Axis

How do I exclude weekends in the visual output? (see circled area below). I would like to exclude weekends both in counting and visually. Is there a way to do that? Here is my code, gantt title blabla dateFormat YYYY-DD-MM axisFormat…
klaushipp
  • 75
  • 6
4
votes
1 answer

x axes titles on subplots Plotly Python

I am trying to add the same titles on the x-axes and y-axes to four gantt charts that are displayed as subplots. I found online figs.update_layout() however, this only presents the title on the first chart, not all. I have found a few answers with R…
Elizabeth
  • 43
  • 1
  • 3
4
votes
1 answer

How do to conditionally bold y axis text in gantt chart using ggplot2

I am trying to use a theme to conditionally set the element text based on an attribute ActivitySort. If the value is 0, I would like to bold the text otherwise I would like it stay plain. require("tidyverse") task0 <- c('Strategy 1', 'Strategy 1',…
John Bowyer
  • 1,213
  • 1
  • 15
  • 26
4
votes
0 answers

Higcharts Gantt chart with table and sub-tasks

How can I have collapsible sub-tasks while using the table on the left? If I remove the table columns then it works fine. This is the example from the official website, unfortunately there is no demo for my case. Any guidance is appreciated. Here…
George Sharvadze
  • 560
  • 9
  • 25
4
votes
2 answers

How to specify additional colors in Plotly Gantt-chart?

I am using to Plotly to plot a Gantt chart: fig = ff.create_gantt(df, index_col='Resource', show_colorbar=True, group_tasks=True) When the index in index_col='Resource' exceeds 10 a error comes up: plotly.exceptions.PlotlyError: Error. The number…
StefanOverFlow
  • 389
  • 4
  • 17
1 2
3
55 56