下面的plantuml文件:gantt.uml创建一个甘特图,增加了条形的厚度和字体,这样如果甘特图中有很多项目,它就更容易辨认。
@startgantt
project starts the 2021/07-22
saturday are closed
sunday are closed
skinparam classFontSize 100
[<size:30>Document relevant studies - 0.2] as [0_2] lasts 10 days
[<size:30>Deliverable: Literature Study - 0.3] as [0_3] happens at [0_2]'s end
[<size:30>Overlapping Research Project - 1] as [1] lasts 11 days
[0_3] happens at [0_2]'s end
[1] starts at [0_2]'s end
[0_2] is colored in DarkOrchid
[1] is colored in Cyan
@endgantt屈服:

然而,我注意到黑色钻石的大小,就像可交付的一样,并没有增长。因此,我想问:
我如何能增加黑色钻石的大小,类似于可交付的PlantUML甘特图?
发布于 2022-08-23 19:42:00
甘特图现在有很多样式选项。
@startgantt
project starts the 2021/07-22
saturday are closed
sunday are closed
<style>
ganttDiagram {
task {
FontName Helvetica
FontColor red
FontSize 18
FontStyle bold
BackGroundColor blue
LineColor yellow
}
milestone {
FontColor blue
FontSize 40
FontStyle italic
BackGroundColor yellow
LineColor red
}
}
</style>
[<size:30>Document relevant studies - 0.2] as [0_2] lasts 10 days
[<size:30>Deliverable: Literature Study - 0.3] as [0_3] happens at [0_2]'s end
[<size:30>Overlapping Research Project - 1] as [1] lasts 11 days
[0_3] happens at [0_2]'s end
[1] starts at [0_2]'s end
[0_2] is colored in DarkOrchid
[1] is colored in Cyan
@endgantt

https://stackoverflow.com/questions/70471848
复制相似问题