diff --git a/frontend/src/components/Stats/SpiderStats.vue b/frontend/src/components/Stats/SpiderStats.vue index 24a9b257..be2a3de0 100644 --- a/frontend/src/components/Stats/SpiderStats.vue +++ b/frontend/src/components/Stats/SpiderStats.vue @@ -47,7 +47,7 @@ -

{{$t('Daily Duration')}}

+

{{$t('Daily Duration (sec)')}}

@@ -69,10 +69,13 @@ export default { renderTaskPieStatus () { const chart = echarts.init(this.$el.querySelector('#task-pie-status')) const option = { + tooltip: { + show: true + }, series: [{ name: '', type: 'pie', - radius: ['50%', '70%'], + // radius: ['50%', '70%'], data: this.statusStats.map(d => { let color if (d.name === 'SUCCESS') { @@ -100,10 +103,13 @@ export default { renderTaskPieNode () { const chart = echarts.init(this.$el.querySelector('#task-pie-node')) const option = { + tooltip: { + show: true + }, series: [{ name: '', type: 'pie', - radius: ['50%', '70%'], + // radius: ['50%', '70%'], data: this.nodeStats.map(d => { return { name: d.name,