Skip to content

Commit

Permalink
Add planning and prototyping phase
Browse files Browse the repository at this point in the history
Calculate gantt height dynamically
  • Loading branch information
sbliven committed Oct 1, 2024
1 parent 00cd686 commit b40cfa1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions _data/timeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
- task_id: "2023-12"
task_name: "Hiring"
resource: "Initialization"
start_date: 2023-07-01
start_date: 2023-06-01
end_date: 2024-03-31
duration: null
percent_complete: 100
dependencies: null

# - task_id: "2024-04"
# task_name: "Planning and Prototyping"
# resource: "Preparation"
# start_date: 2023-09-01
# end_date: 2024-04-30
# duration: null
# percent_complete: 100
# dependencies: null
- task_id: "2024-04"
task_name: "Planning and Prototyping"
resource: "Initialization"
start_date: 2023-07-01
end_date: 2023-12-31
duration: null
percent_complete: 100
dependencies: null

- task_id: "MS1"
task_name: "MS-I: Metadata Standards"
Expand Down
2 changes: 1 addition & 1 deletion assets/js/gantt.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function drawChart(parent, ymldata) {
data.addRows(rows);

var options = {
height: 400,
height: 42*rows.length+42,
gantt: {
criticalPathEnabled: false,
arrow: {
Expand Down

0 comments on commit b40cfa1

Please sign in to comment.