| 1 | <!doctype html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="utf-8" /> |
| 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
| 6 | <title>Mermaid Quick Test Page</title> |
| 7 | <link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo=" /> |
| 8 | <style> |
| 9 | div.mermaid { |
| 10 | /* font-family: 'trebuchet ms', verdana, arial; */ |
| 11 | font-family: 'Courier New', Courier, monospace !important; |
| 12 | } |
| 13 | </style> |
| 14 | </head> |
| 15 | |
| 16 | <body> |
| 17 | <h1>Quadrant chart demos</h1> |
| 18 | <pre class="mermaid"> |
| 19 | %%{init: {"quadrantChart": {"quadrantPadding": 10}, "theme": "forest", "themeVariables": {"quadrant1TextFill": "blue"}} }%% |
| 20 | quadrantChart |
| 21 | x-axis Urgent --> Not Urgent |
| 22 | y-axis Not Important --> important |
| 23 | quadrant-1 Plan |
| 24 | quadrant-2 Do |
| 25 | quadrant-3 Delegate |
| 26 | quadrant-4 Delete |
| 27 | </pre> |
| 28 | |
| 29 | <pre class="mermaid"> |
| 30 | %%{init: {"quadrantChart": {"chartWidth": 600, "chartHeight": 600} } }%% |
| 31 | quadrantChart |
| 32 | title Analytics and Business Intelligence Platforms |
| 33 | x-axis "Completeness of Vision ❤" --> |
| 34 | y-axis Ability to Execute |
| 35 | quadrant-1 Leaders |
| 36 | quadrant-2 Challengers |
| 37 | quadrant-3 Niche |
| 38 | quadrant-4 Visionaries |
| 39 | Microsoft: [0.75, 0.75] |
| 40 | Salesforce: [0.55, 0.60] |
| 41 | IBM: [0.51, 0.40] |
| 42 | Incorta: [0.20, 0.30] |
| 43 | </pre> |
| 44 | <hr /> |
| 45 | |
| 46 | <script type="module"> |
| 47 | import mermaid from './mermaid.esm.mjs'; |
| 48 | mermaid.initialize({ |
| 49 | theme: 'default', |
| 50 | logLevel: 3, |
| 51 | securityLevel: 'loose', |
| 52 | }); |
| 53 | </script> |
| 54 | </body> |
| 55 | </html> |
| 56 | |