canvas-datagrid
Version:
Canvas based data grid web component. Capable of displaying millions of contiguous hierarchical rows and columns without paging or loading, on a single canvas element.
27 lines (26 loc) • 838 B
HTML
<html lang="en">
<head>
<script src="https://tonygermaneri.github.io/pivot-form/dist/pivot-form.js"></script>
<script src="../dist/canvas-datagrid.debug.js"></script>
<script src="./pivotFormDemo.js"></script>
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<style>
html, body {
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
--pivot-form-dialog-width: 535px;
}
#grid {
height: 100%;
width: 100%;
min-height: 100%;
}
</style>
</head>
<body><div id="grid"></div></body>
</html>