Don't show circle at points

This commit is contained in:
Matthias 2020-06-23 20:07:24 +02:00
parent 42bbde2ed3
commit 5fd12eb590

View File

@ -44,7 +44,7 @@ export default {
},
computed: {
hasData() {
return this.dataset !== null;
return this.dataset !== null && typeof this.dataset === 'object';
},
chartOptions() {
@ -94,6 +94,7 @@ export default {
x: colDate,
y: col,
},
showSymbol: false,
};
subPlots.series.push(sp);
});
@ -148,6 +149,7 @@ export default {
x: colDate,
y: col,
},
showSymbol: false,
};
subPlots.series.push(sp);
console.log(subPlots);