<!DOCTYPE html> <html class="zc-html"> <head> <meta charset="utf-8"> <title>ZingGrid: Simple Grid</title> <script nonce="undefined" src="https://cdn.zinggrid.com/zinggrid.min.js"></script> <style> body { background: #e6e6e6; } zing-grid[loading] { height: 29px; } </style> </head> <body> <zing-grid src="https://cdn.zinggrid.com/datasets/got-deaths.json"> <zg-column type="row-group" index="season,episode"></zg-column> <zg-column index="order"></zg-column> <zg-column index="character_killed"></zg-column> <zg-column index="killer"></zg-column> <zg-column index="method"></zg-column> <zg-column index="reason"></zg-column> <zg-column index="allegiance"></zg-column> </zing-grid> <script></script> </body> </html>
<!DOCTYPE html> <html class="zc-html"> <head> <meta charset="utf-8"> <title>ZingGrid: Simple Grid</title> <script src="https://cdn.zinggrid.com/zinggrid.min.js"></script> </head> <body> <zing-grid src="https://cdn.zinggrid.com/datasets/got-deaths.json"> <zg-column type="row-group" index="season,episode"></zg-column> <zg-column index="order"></zg-column> <zg-column index="character_killed"></zg-column> <zg-column index="killer"></zg-column> <zg-column index="method"></zg-column> <zg-column index="reason"></zg-column> <zg-column index="allegiance"></zg-column> </zing-grid> </body> </html>
body { background: #e6e6e6; }