Browse Source

fix: 图表title

master
guoapeng 1 week ago
parent
commit
a761e12241
  1. 2
      src/components/home/LineChart.vue

2
src/components/home/LineChart.vue

@ -25,7 +25,7 @@ watch(
}
const option = {
title: {
text: (titles[newValue?.type || ''] || '') + (newValue?.id || ''),
text: (titles[newValue?.type || ''] || '') + (newValue.type !== 'Internal' ? newValue?.id || '' : ''),
left: 'center', //
top: 0,
},

Loading…
Cancel
Save