信通院-灾备 图表源码(在产品图表库基础上进行修改),开发逻辑和产品图表库一致
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import ChartDigit21 from '../../../src/chart/zaibei/ChartDigit23/ChartDigit21.js';
  2. let chart = new ChartDigit21(document.getElementsByClassName('c1')[0], {});
  3. window.addEventListener('resize', () => {
  4. chart.resize();
  5. });
  6. const defaultOption = {
  7. bg: {
  8. backgroundColor: "#000"
  9. },
  10. digit21: {
  11. center: {
  12. x: "50%",
  13. y: "50%"
  14. },
  15. width: "40%",
  16. ellipseLineColor: '#15c8d8',
  17. glowLineColor: '#66ffff',
  18. rectColor: '#83f7ff',
  19. ploygonColor: '#01eaff',
  20. sportLineColor: '#1f1f1f',
  21. textColor: '#fff',
  22. textShdowColor: 'blue',
  23. fontSize: 40
  24. },
  25. shape: {
  26. icon: {
  27. size: 80,
  28. offsetX: 0,
  29. offsetY: 0,
  30. rotation: 0,
  31. iconColor: '#fff',
  32. iconShadowColor: '#03c5b1'
  33. },
  34. iconType: {
  35. type: 'icon2',
  36. path: ''
  37. // path: ''
  38. }
  39. },
  40. series: [{
  41. name: '总仓数',
  42. value: 20
  43. }]
  44. }
  45. // setTimeout(()=>{
  46. // chart.setOption(defaultOption);
  47. // },2000)