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
3
votes
2 answers

Text labels inside jfree Gantt chart bars

I have a simple Gantt chart here, that consists of a number of Tasks just like that: TaskSeries s1 = new TaskSeries("Planned Tasks"); Task newTask = new Task("Task" + String.valueOf(taskIndex), new SimpleTimePeriod(currentTime, currentTime + (int)…
repto
  • 80
  • 1
  • 5
3
votes
1 answer

Interactive Gantt chart

I have been using jfreechart to create Gantt chart and even managed to add mile stone to it. I am also able to show these charts dynamically on the web page. But now I want to add more interactions to the chart so I need some kind of client side…
dragon66
  • 2,645
  • 2
  • 21
  • 43
2
votes
1 answer

Customizing Dates on the Gantt Chart for Jasper Reports

In the gantt chart on my reports I have 1 year's worth of data. I'm only interested in seeing the month printed at the top of the gantt chart. [Jan-Dec]. However, the graph currently displays the Month and the year. How would I customize the chart…
monksy
  • 14,156
  • 17
  • 75
  • 124
2
votes
0 answers

How to move a node in a HighCharter Gantt chart in a Shiny app?

I am experimenting with Highcharter's Gantt chart possibilities and I wrote a little test app to learn how this library works. I would like to be able to move a node in the chart. For example, I like to move the same first node to a few days…
Jochem
  • 3,295
  • 4
  • 30
  • 55
2
votes
1 answer

IcCube Reporting V8 - possible to use Gantt chart?

Using IcCube Reporting V7, I was able to create AmCharts Gantt charts as following : Using following mdx behind the scene : with member HDebut as [Measures].[Bloc Début Intervalle], format_string = "hh:mm" member HFin as [Measures].[Bloc Fin…
Bertrand Miot
  • 929
  • 5
  • 12
2
votes
1 answer

D3js Gantt Chart compatible for D3.4

I'm following this example 3 and it depends on gantt-chart lib, but apparently it's not compatible with version d3v4 and there are errors with the axis. So I found this ported to d3v4 and manually download the js to my project. The axis work now,…
Elly
  • 145
  • 7
2
votes
3 answers

Looking for 3rd party Qt Gantt Chart component

I'm looking for a Qt Gantt Chart GUI component or at least the beginnings of one. I've looked the web over so this is my last stop before creating one for myself. I'm capable of realizing this type of component myself but would prefer to dedicate my…
user937305
  • 68
  • 1
  • 5
2
votes
0 answers

Stack several px.timeline in one html file

So I have a pandas DataFrame that I want to visualize as several Gantt charts using plotly (about 60 charts to be precise) and export them as an html file. The problem is that I need colors to be unique in each subplot (but they can be duplicated…
Aisec Nory
  • 385
  • 1
  • 8
2
votes
0 answers

Adding important milestones of a gantt chart

I have made a Gantt chart but I also want to incorporate payments received milestones on that process Gantt chart itself. Like they could be just arrows/bars at a particular time with information on how much amount was received. If possible height…
Maxy
  • 39
  • 7
2
votes
1 answer

Subtracting dates in Python for Gantt chart

I am following a tutorial to make a Gantt chart with this tutorial: https://towardsdatascience.com/gantt-charts-with-pythons-matplotlib-395b7af72d72 I have tried to recreate part of the test dataset with the following script: import pandas as pd …
2
votes
1 answer

Add hyperlinks to Gantt bars in plotly express?

I'm using a Gantt chart to show recording data from a large number of sensors in a distributed network over the course of a few years. (Some of the nodes in the network turn on or off intermittently, so this is an effective way to show the whole…
Iotatron
  • 65
  • 7
2
votes
2 answers

Visualizing a project tracker in R

Does anyone have any ideas on how to visualize something like this using R? Basically I want to make a plot to track the percentage completeness of different jobs in a few projects. The percentage completeness should be color coded (in the example,…
zxy
  • 23
  • 3
2
votes
1 answer

Issue in getting data from node server (redirecting from php to node using mod proxy)

ServerName my_domain_name DocumentRoot /var/www/html ProxyPass http://my_domain_name:1341/ ProxyPassReverse http://my_domain_name:1341/ ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog…
2
votes
1 answer

Every year in september, my Date list skips a month and I cannot reproduce it

The problem I am building an Open-Source Vue Application. It has a Gantt-Chart to show tasks as a timeline. It has an option for users to set a date range, by default it shows the current and next month. Every year in september, this chart breaks.…
kolaente
  • 1,252
  • 9
  • 22