mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-22 19:15:15 +00:00
Don't show circle at points
This commit is contained in:
parent
42bbde2ed3
commit
5fd12eb590
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue
Block a user