|
@@ -385,13 +385,13 @@ export default {
|
|
|
title: { text: '', subtext: '' },
|
|
|
color: ['#ff0000', '#5199e5', '#fdb06a', '#fb8b73'], // 关键加上这句话,legend的颜色和折线的自定义颜色就一致了
|
|
|
legend: [{
|
|
|
- itemWidth: 15, itemHeight: 7, right: '25%', textStyle: { fontSize: 12 },
|
|
|
- data: [{ name: '设计重量' }, { name: '实际重量' }]
|
|
|
+ itemWidth: 20, itemHeight: 7, right: '25%', textStyle: { fontSize: 12 },
|
|
|
+ data: [{ name:this.$t('errorAnalysis.sjzl') }, { name:this.$t('errorAnalysis.sjzl1') }]
|
|
|
}, {
|
|
|
- itemWidth: 15, itemHeight: 15, right: '0', textStyle: { fontSize: 12 },
|
|
|
+ itemWidth: 20, itemHeight: 15, right: '0', textStyle: { fontSize: 12 },
|
|
|
data: [
|
|
|
- { name: '开始重量' },
|
|
|
- { name: '结束重量' }
|
|
|
+ { name: this.$t('errorAnalysis.stWeight') },
|
|
|
+ { name: this.$t('errorAnalysis.edWeight') }
|
|
|
]
|
|
|
}],
|
|
|
tooltip: {
|
|
@@ -433,10 +433,10 @@ export default {
|
|
|
{type:'slider' }, //用于添加滑动条缩放,
|
|
|
],
|
|
|
series: [
|
|
|
- { symbol: 'none', name: '实际重量', type: 'line', data: chartLine_data.data3, itemStyle: { normal: { lineStyle: { color: '#ff0000' }}}},
|
|
|
- { symbol: 'none', name: '设计重量', type: 'line', step: 'middle', data: chartLine_data.data2 },
|
|
|
- { name: '开始重量', symbolSize: 10, type: 'scatter', data: chartLine_data.data4 },
|
|
|
- { name: '结束重量', symbolSize: 10, type: 'scatter', data: chartLine_data.data5 }
|
|
|
+ { symbol: 'none', name: this.$t('errorAnalysis.sjzl1') , type: 'line', data: chartLine_data.data3, itemStyle: { normal: { lineStyle: { color: '#ff0000' }}}},
|
|
|
+ { symbol: 'none', name: this.$t('errorAnalysis.sjzl') , type: 'line', step: 'middle', data: chartLine_data.data2 },
|
|
|
+ { name: this.$t('errorAnalysis.stWeight') , symbolSize: 10, type: 'scatter', data: chartLine_data.data4 },
|
|
|
+ { name: this.$t('errorAnalysis.edWeight') , symbolSize: 10, type: 'scatter', data: chartLine_data.data5 }
|
|
|
]
|
|
|
}
|
|
|
this.chartLine.setOption(option)
|