我按照this answer尝试使用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)仅表示" TBD"在语法部分。