-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaxes-labels.html
40 lines (37 loc) · 954 Bytes
/
axes-labels.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<html>
<head>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script>
let data = [{
"x": [0, 1, 2, 3, 4, 5],
"y": [37.1, 37.3, 37.6, 38, 37.1, 36.8],
"mode": "lines+markers",
"type": "scatter",
}];
let layout = {
"title": "Antoninus Pius",
"xaxis": {
"title": "Day"
},
"yaxis": {
"title": "Temperature (°C)"
}
}
$(() => {
// everything here happens only after the page is loaded
Plotly.newPlot("myGraph", data, layout);
});
</script>
<style>
#myGraph {
width: 600px;
height: 400px
}
</style>
</head>
<body>
<div>Here is our graph:</div>
<div id="myGraph"></div>
</body>
</html>