Mercurial > code > home > repos > streamed-graph
view index.html @ 116:dd3325cc023e
multiple table support in Layout
author | drewp@bigasterisk.com |
---|---|
date | Sat, 19 Mar 2022 17:23:04 -0700 |
parents | f08004002444 |
children | ede37954dbb4 |
line wrap: on
line source
<!DOCTYPE html> <html> <body> <h1>streamed-graph demo</h1> <div id="demo"></div> <script type="module"> import { html, render } from 'lit'; import { StreamedGraph } from "."; render( html` <streamed-graph url="/net-route-input/graph/netRouteInput/events" view="demo-view.n3" expanded="true" ></streamed-graph> `, document.querySelector('#demo') ); </script> </body> </html>