AnalysisChart.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div ref="chartsWrapperRef" class="diagrams-chart-container"></div>
  3. </template>
  4. <script>
  5. import echartsMixin from '../mixin/echarts'
  6. import { generateLineGraphic, generateDiagramsHoveDom as formatter } from '../utils/echarts'
  7. export default {
  8. mixins: [echartsMixin('chartsWrapperRef')],
  9. data() {
  10. return {
  11. staticOptions: {
  12. title: { subtext: '交易总额(元)' },
  13. grid: { left: '7%', right: '3%', top: '20%', bottom: '12%' },
  14. tooltip: { trigger: 'axis', showDelay: 10, padding: 0, axisPointer: { type: 'shadow', shadowStyle: { color: generateLineGraphic('rgba(225, 228, 255, 0)', '#E1E4FF') } }, formatter },
  15. xAxis: { offset: 5, axisTick: { show: false }, axisLine: { show: false }, axisLabel: { color: '#A4A4A4', fontSize: 14 }, data: [] },
  16. yAxis: { axisLine: { show: false }, axisTick: { show: false }, axisLabel: { color: '#A4A4A4', fontSize: 14 }, splitLine: { show: true, lineStyle: { width: 1, color: '#F3F4F8' } } },
  17. series: { zlevel: 100, name: '销量', type: 'bar', data: [], barWidth: '24px', itemStyle: { borderRadius: 5, color: generateLineGraphic('#5cc1fd', '#15c9ca') } }
  18. }
  19. }
  20. },
  21. methods: {
  22. update(data) {
  23. this.instance.setOption({ xAxis: { data: Object.keys(data) }, series: { data: Object.values(data) } })
  24. }
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. .diagrams-chart-container {
  30. height: 242px;
  31. }
  32. </style>