美人鱼甘特(Mermaid Gantt)将周末从Axis排除在外

时间:2020-03-24 10:05:58

标签: markdown gantt-chart weekend mermaid

我现在正和美人鱼甘特一起玩游戏。 现在,我遇到了一个问题,即为了进行时间计算,我已经可以排除周末,但是它们仍然在图表本身中显示为空白。 这是我的测试代码:

gantt
    title blabla
    dateFormat  YYYY-DD-MM
    axisFormat %W
    excludes weekends saturday,sunday

    section Section
    Task     :a1, 2020-23-03, 5d
    Another task     :after a1  , 15d

    section Another
    Task in sec      :2020-20-03  , 12d
    another task      : 24d

Output of code with marked gap

我想完全排除周末。有没有办法做到这一点? 预先谢谢你!

1 个答案:

答案 0 :(得分:0)

似乎新版本默认不包括周末

运行此代码,

# library(DiagrammeR)
gantt
 dateFormat  YYYY-DD-MM
 title blabla
 # axisFormat %d/%m
 # excludes weekends saturday,sunday

section Section
Task     :a1, 2020-23-03, 5d
Another task     :after a1  , 15d

section Another
Task in sec      :2020-20-03  , 12d
another task      : 24d

我明白了,

gantt mermadi