DiagrammeR
根据这个答案,我正在尝试使用创建甘特图。
但是,如果部分名称太长,它们会溢出到图表中。这是一个例子。
library(DiagrammeR)
mermaid("
gantt
dateFormat YYYY-MM-DD
title Project timeline
section A ridiculously long section name
create data structures :done, frame1, 2019-01-01, 2019-02-28
section Another long section name
refactor mistakes in data structures :active, frame2, after frame1, 12w
section Section 3
Write code :active, first_1, after frame1, 2019-06-30
Party :crit, first_2, after first_1, 7d
")
有人知道如何调整部分标签列的宽度吗? ?mermaid
不提供任何解释。而这个帮助页面(https://mermaidjs.github.io/gantt.html)只在语法部分说“待定”。