2019-11-27 20:15:21 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css?family=Montserrat&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
2019-12-08 10:10:03 +01:00
|
|
|
<style>
|
2019-12-11 21:12:48 +01:00
|
|
|
body {background: white}
|
2019-12-08 10:10:03 +01:00
|
|
|
h1 { color: white;}
|
|
|
|
.arrowheadPath {fill: red;}
|
2019-11-27 20:15:21 +01:00
|
|
|
|
2019-12-08 10:10:03 +01:00
|
|
|
.edgePath .path {stroke: red;}
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|
2019-11-27 20:15:21 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>info below</h1>
|
2019-12-11 21:12:48 +01:00
|
|
|
<div style="display: flex;width: 100%; height: 100%">
|
|
|
|
<div class="mermaid" style="width: 100%; height: 100%">gantt
|
|
|
|
dateFormat YYYY-MM-DD
|
|
|
|
axisFormat %d/%m
|
|
|
|
title Adding GANTT diagram to mermaid
|
|
|
|
excludes weekdays 2014-01-10
|
|
|
|
|
|
|
|
apple :a, 2017-07-20, 1w
|
|
|
|
banana :crit, b, 2017-07-23, 1d
|
|
|
|
cherry :active, c, after b a, 1d
|
|
|
|
|
|
|
|
|
2019-12-02 21:10:37 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="./mermaid.js"></script>
|
2019-11-27 20:15:21 +01:00
|
|
|
<script>
|
|
|
|
mermaid.initialize({
|
2019-12-11 21:12:48 +01:00
|
|
|
// theme: 'dark',
|
2019-11-27 20:15:21 +01:00
|
|
|
// arrowMarkerAbsolute: true,
|
2019-12-08 10:10:03 +01:00
|
|
|
// themeCSS: '.edgePath .path {stroke: red;} .arrowheadPath {fill: red;}',
|
2019-11-27 20:15:21 +01:00
|
|
|
logLevel: 3,
|
2019-12-07 12:19:45 +01:00
|
|
|
flowchart: { curve: 'linear', "htmlLabels": false },
|
2019-12-11 21:12:48 +01:00
|
|
|
// gantt: { axisFormat: '%m/%d/%Y' },
|
2019-11-27 20:15:21 +01:00
|
|
|
sequence: { actorMargin: 50 },
|
|
|
|
// sequenceDiagram: { actorMargin: 300 } // deprecated
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|