-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Render log scales for bar chart example
- Loading branch information
Showing
3 changed files
with
171 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,31 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<body> | ||
<div id="first"></div> | ||
<div id="second"></div> | ||
<noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript> | ||
<script src="./index.js"></script> | ||
</body> | ||
<head> | ||
<style> | ||
.wrapper { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
row-gap: 20px; | ||
} | ||
|
||
.wrapper > div { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="wrapper"> | ||
<div id="first"></div> | ||
<div id="first-log"></div> | ||
<div id="second"></div> | ||
<div id="second-log"></div> | ||
</div> | ||
<noscript | ||
>This page contains webassembly and javascript content, please | ||
enable javascript in your browser.</noscript | ||
> | ||
<script src="./index.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters