connectAnalysis.data.ts 1.3 KB

123456789101112131415161718192021222324
  1. export const plainOptions: any[] = [
  2. { label: 'CO浓度(ppm)', value: 'coVal', color: '#3bd97a', areaColor: ['rgba(59, 217, 122,0.1)','rgba(59, 217, 122,0.8)'] },
  3. { label: 'CH4浓度(%)', value: 'ch4Val', color: '#f9c74a', areaColor: ['rgba(249, 199, 74,0.1)','rgba(249, 199, 74,0.8)'] },
  4. { label: 'C2H4浓度(ppm)', value: 'c2h4Val', color: '#ac7bf1', areaColor: ['rgba(172, 123, 241,0.1)','rgba(172, 123, 241,0.8)'] },
  5. { label: 'C2H2浓度(ppm)', value: 'c2h2Val', color: '#50b2f9', areaColor: ['rgba(80, 178, 249,0.1)','rgba(80, 178, 249,0.8)'] },
  6. { label: 'CO2浓度(%)', value: 'co2Val', color: '#1fd0da', areaColor: ['rgba(31, 208, 218,0.1)','rgba(31, 208, 218,0.8)'] },
  7. { label: 'O2浓度(%)', value: 'o2Val', color: '#ff6666', areaColor: ['rgba(255, 102, 102,0.1)','rgba(255, 102, 102,0.8)'] },
  8. { label: '压差(kPa)', value: 'sourcePressure', color: '#3b4bd9', areaColor: ['rgba(59, 75, 217,0.1)','rgba(59, 75, 217,0.8)'] },
  9. { label: '温度(℃)', value: 'temperature', color: '#f18736', areaColor: ['rgba(241, 135, 54,0.1)','rgba(241, 135, 54,0.8)'] },
  10. ]
  11. export const lengendTitle = [
  12. { label: 'CO浓度(ppm)' },
  13. { label: 'CH4浓度(%)' },
  14. { label: 'C2H4浓度(ppm)' },
  15. { label: 'C2H2浓度(ppm)' },
  16. { label: 'CO2浓度(%)' },
  17. { label: 'O2浓度(%)' },
  18. { label: '压差(kPa)' },
  19. { label: '温度(℃)' },
  20. ]