Markdown 美人鱼甘特将周末排除在Axis之外

Markdown 美人鱼甘特将周末排除在Axis之外,markdown,gantt-chart,weekend,mermaid,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 , 15

如何在视觉输出中排除周末?(见下面圆圈区域)

我想在计数和视觉上都排除周末。有办法吗

这是我的密码

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

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

运行此代码

# 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
我明白了


啊,太酷了!谢谢你的提示!