This commit is contained in:
Max 2020-10-20 23:52:36 +01:00
parent 1edd2bd90b
commit 736306972b
2 changed files with 14 additions and 3 deletions

Binary file not shown.

View File

@ -35,7 +35,6 @@ function createGraph() {
y: temperatures,
x: formatted_datetimes,
text: "trace.text variable",
name: "Air temperature",
marker: {
color: '#00FFFF',
line: {
@ -50,14 +49,26 @@ function createGraph() {
font: { size: 18, color: '#AAAAAA' },
paper_bgcolor: '#111111',
plot_bgcolor: '#111111',
title: {
text: "Air tempereature",
font: {
color: '#FFFFFF'
},
},
xaxis: {
title: {
text: 'Date'
text: 'Date',
font: {
color: '#FFFFFF'
}
}
},
yaxis: {
title: {
text: 'Temperature in deg C'
text: 'Temperature in ºC',
font: {
color: '#FFFFFF'
}
}
}
}