*** WIP WIP *** All charts work now

This commit is contained in:
rxf
2023-04-02 15:33:23 +02:00
parent aeeb660823
commit 48d2f82d83
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -456,7 +456,7 @@ export const ldenData = (params, values) => {
// Put values into the series // Put values into the series
let cnt = 0 let cnt = 0
values.forEach((x) => { values.forEach((x) => {
if (x.lden != -1) { if (!((x.lden === -1) || (x.datetime === undefined))) {
let dat = new Date(x.datetime).getTime() // retrieve the date let dat = new Date(x.datetime).getTime() // retrieve the date
series1.push([dat, x.lden]) series1.push([dat, x.lden])
} }
+1 -1
View File
@@ -41,7 +41,7 @@ export function createGlobObtions() {
}, },
tooltip: { tooltip: {
valueDecimals: 1, valueDecimals: 1,
backgroundColor: 0, backgroundColor: '#ffffff',
borderWidth: 0, borderWidth: 0,
borderRadius: 0, borderRadius: 0,
useHTML: true, useHTML: true,