20 lines
558 B
Plaintext
20 lines
558 B
Plaintext
package main
|
|
|
|
script graph(data []TimeValue) {
|
|
const chart = LightweightCharts.createChart(document.body, { width: 400, height: 300 });
|
|
const lineSeries = chart.addLineSeries();
|
|
lineSeries.setData(data);
|
|
}
|
|
|
|
templ page(data []TimeValue) {
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>Graphs</title>
|
|
<script src="https://unpkg.com/lightweight-charts/dist/lightweight-charts.standalone.production.js"></script>
|
|
</head>
|
|
<body onload={ graph(data) }></body>
|
|
</html>
|
|
}
|