Create KWB Projects Gant Chart
plot_gantt_chart_project( projects_json = "https://kwb-r.github.io/kwb.site/projects.json", tag_selection = "department", language_selection = "en", interactive = FALSE, interactive_export = FALSE, interactive_export_dir = ".", alpha = 0.5 )
projects_json | default: "https://kwb-r.github.io/kwb.site/projects.json") |
---|---|
tag_selection | default: "department" (or "topic") |
language_selection | default: "en" (or "de") |
interactive | should interactive ploty be used (default: FALSE) |
interactive_export | should interactive plotly graph exported? default: FALSE |
interactive_export_dir | export directory in case of interactive = TRUE, default: "." |
alpha | alpha (default: 0.5) |
KWB projects gant chart
if (FALSE) { projects_by_department_en <- plot_project_gant_chart() plot_project_gant_chart(interactive = TRUE) projects_by_department_de <- plot_project_gant_chart(language_selection = "de") projects_by_topic_en <- plot_project_gant_chart(tag_selection = "topic") projects_by_topic_de <- plot_project_gant_chart(tag_selection = "topic", language_selection = "de") }