Juq097 ((new))

Chart.line() .data([ timestamp: 1680307200, temperature: 22.4 , timestamp: 1680307260, temperature: 22.5 , timestamp: 1680307320, temperature: 22.3 ]) .encode( x: field: "timestamp", type: "temporal" , y: field: "temperature", type: "quantitative" ) .theme("dark") .mount("#chart"); </script> </body> </html>

<script type="module"> import Chart from "juq097"; juq097