The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
label_level parameter to milestone markers for vertical
stacking of labels. Set to 1 or 2 to control which labels appear above
others when milestones are close together.milestones <- data.frame(
label = c("Kickoff", "Budget Approval"),
color = c("blue", "green"),
label_level = c(1, 2) # Level 1 appears above level 2
)
milestones$date <- list("01/05/2025", "01/10/2025")tooltip_config$milestone.
Add any columns to your milestone data frame and display them in hover
tooltips.milestones <- data.frame(
label = c("Kickoff", "Review Period"),
color = c("blue", "purple"),
Description = c("Project kickoff meeting", "Technical review"),
Owner = c("PM", "Tech Lead")
)
milestones$date <- list("01/05/2025", c("02/10/2025", "02/20/2025"))
Ganttify(
...,
milestone_lines = milestones,
tooltip_config = list(
milestone = c("Description", "Owner")
)
)date field to specify either a single date (vertical line)
or two dates (shaded area).milestones <- data.frame(
label = c("Deadline", "Review Period"),
color = c("red", "blue"),
fill_opacity = c(1, 0.15)
)
milestones$date <- list(
"12/01/2024", # Single date = line
c("10/01/2024", "10/31/2024") # Two dates = shaded area
)show_yaxis_labels to layout_config to hide
y-axis labels. When set to FALSE, activity labels are
hidden. If display_config$wbs$show_labels is
TRUE, WBS labels will still be shown.layout_config = list(show_yaxis_labels = FALSE)opacity parameter instead of rgba.tooltip_config parameter to display custom columns from
your data in hover tooltips. Specify which columns from
wbs_structure and activities to show. Fields
that don’t exist or have empty/NA values are automatically hidden.tooltip_config = list(
wbs = c("Owner", "Budget"),
activity = c("Status", "Agency", "Priority")
)hovertext to hovertemplate
for more consistent hover behavior across all bar types.short_activity_indicator parameter
(replaced by automatic dynamic bar width).hover_popup_max_chars parameter to control text
wrapping in hover popups.yaxis_label_width parameter to control y-axis
label area width.yaxis_label_max_chars parameter for automatic
label truncation.Sys.Date() in
milestone_lines.color_config parameter with three modes: “wbs”,
“uniform”, and “attribute”.bar_config parameter for bar styling (opacity,
height, dim_past_activities).display_config parameter to control visibility of
WBS/activities.label_config parameter for custom label
templates.These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.