2022-09-26 18:16:00 -07:00
|
|
|
<!DOCTYPE html>
|
2022-10-02 13:51:25 -07:00
|
|
|
<html lang="en">
|
2022-09-26 18:16:00 -07:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<title>Mermaid Quick Test Page</title>
|
|
|
|
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo=" />
|
|
|
|
<style>
|
|
|
|
div.mermaid {
|
|
|
|
/* font-family: 'trebuchet ms', verdana, arial; */
|
|
|
|
font-family: 'Courier New', Courier, monospace !important;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2022-10-02 13:51:25 -07:00
|
|
|
<h1>Pie chart demos</h1>
|
2022-09-26 18:16:00 -07:00
|
|
|
<pre class="mermaid">
|
|
|
|
pie title Pets adopted by volunteers
|
|
|
|
accTitle: simple pie char demo
|
|
|
|
accDescr: pie chart with 3 sections: dogs, cats, rats. Most are dogs.
|
2022-11-22 10:04:28 +01:00
|
|
|
"Dogs" : 386
|
2022-09-26 18:16:00 -07:00
|
|
|
"Cats" : 85
|
|
|
|
"Rats" : 15
|
|
|
|
</pre>
|
|
|
|
|
2022-10-02 13:51:25 -07:00
|
|
|
<hr />
|
2022-09-26 18:16:00 -07:00
|
|
|
<pre class="mermaid">
|
|
|
|
pie
|
|
|
|
title Key elements in Product X
|
|
|
|
accTitle: Key elements in Product X
|
|
|
|
accDescr: This is a pie chart showing the key elements in Product X.
|
|
|
|
"Calcium" : 42.96
|
|
|
|
"Potassium" : 50.05
|
|
|
|
"Magnesium" : 10.01
|
|
|
|
"Iron" : 5
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<script type="module">
|
2022-10-02 13:51:25 -07:00
|
|
|
import mermaid from '../packages/mermaid';
|
2022-09-26 18:16:00 -07:00
|
|
|
mermaid.initialize({
|
|
|
|
theme: 'forest',
|
|
|
|
// themeCSS: '.node rect { fill: red; }',
|
|
|
|
logLevel: 3,
|
|
|
|
securityLevel: 'loose',
|
|
|
|
// flowchart: { curve: 'basis' },
|
|
|
|
// gantt: { axisFormat: '%m/%d/%Y' },
|
|
|
|
sequence: { actorMargin: 50 },
|
|
|
|
// sequenceDiagram: { actorMargin: 300 } // deprecated
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|