This commit is contained in:
2020-06-04 19:33:22 +00:00
parent 490a275308
commit 451301e755
2 changed files with 3 additions and 80 deletions

View File

@@ -35,13 +35,6 @@
class="my-12"
/>
</v-col>
<v-col cols="12">
<gz-chart-line
:chartData="gcAllChartData"
:options="timeLineChartOptions"
class="my-12"
/>
</v-col>
</v-tab-item>
<v-tab-item>
<v-col cols="12">
@@ -338,39 +331,6 @@ export default {
]
};
},
gcAllChartData() {
return {
datasets: [
{
label: "GC Gen0",
borderColor: CHART_PALETTE.blue,
fill: false,
radius: 0,
hoverRadius: 10,
hitRadius: 4,
data: this.memcpu.gen0
},
{
label: "GC Gen1",
borderColor: CHART_PALETTE.cyan,
fill: false,
radius: 0,
hoverRadius: 10,
hitRadius: 4,
data: this.memcpu.gen1
},
{
label: "GC Gen2",
borderColor: CHART_PALETTE.black,
fill: false,
radius: 0,
hoverRadius: 10,
hitRadius: 4,
data: this.memcpu.gen2
}
]
};
},
memAllChartData() {
return {
datasets: [