echart-remote-temp.js 650 B

123456789101112131415161718192021222324252627282930313233
  1. function (data, params) {
  2. const myChart = this.myChart;
  3. return {
  4. title: {
  5. textStyle: {
  6. fontWeight: 'normal',
  7. color: '#fff'
  8. },
  9. text: 'ECharts 入门示例'
  10. },
  11. tooltip: {},
  12. legend: {
  13. data: ['销量'],
  14. textStyle: {
  15. fontWeight: 'normal',
  16. color: '#fff'
  17. },
  18. },
  19. xAxis: {
  20. data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
  21. },
  22. yAxis: {},
  23. series: [{
  24. name: '销量',
  25. type: 'line',
  26. data: [5, 20, 36, 10, 10, 20],
  27. textStyle: {
  28. fontWeight: 'normal',
  29. color: '#fff'
  30. },
  31. }]
  32. };
  33. }