mirror of
https://github.com/simonw/datasette-vega.git
synced 2026-07-22 17:04:32 +02:00
23 lines
1.2 KiB
HTML
23 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="theme-color" content="#000000">
|
|
<link rel="stylesheet" href="https://latest.datasette.io/-/static/app.css">
|
|
<title>Datasette Vega</title>
|
|
</head>
|
|
<body class="datasette-vega-demo">
|
|
<h1>Datasette Vega</h1>
|
|
<p>Enter the URL of the JSON version of any Datasette table:</p>
|
|
<form action="." method="GET" style="margin-bottom: 2em">
|
|
<input id="jsonUrl" type="text" name="url" value="https://fivethirtyeight.datasettes.com/fivethirtyeight-45d758d/nba-elo%2Fnbaallelo.json" style="width: 80%; font-size: 1.2em;">
|
|
<input type="submit" value="Load" style="font-size: 1.2em; border: 1px solid #ccc">
|
|
<p>Examples: <a href="/?url=https%3A%2F%2Ffivethirtyeight.datasettes.com%2Ffivethirtyeight-45d758d%2Fnba-elo%252Fnbaallelo.json#g.mark=bar&g.x_column=game_id&g.x_type=ordinal&g.y_column=pts&g.y_type=quantitative&g.color_column=team_id">game_id/pts/team_id</a></p>
|
|
</form>
|
|
<div id="vis-tool"></div>
|
|
<div id="vis-wrapper" style="overflow: auto">
|
|
<div id="vis"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|