Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions examples/stackblitz-area-basic/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
.DS_Store
21 changes: 21 additions & 0 deletions examples/stackblitz-area-basic/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KChart Area Basic</title>
</head>
<body>
<main class="page-shell">
<header class="intro">
<p class="eyebrow">Operations overview</p>
<h1>Weekly energy demand</h1>
<p>Grid load climbs through the summer peak before easing into early autumn.</p>
</header>
<section class="chart-panel">
<div id="chart"></div>
</section>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading