demo.js 452 B

123456789101112131415161718192021222324252627
  1. export default {
  2. title: {
  3. text: '剩余油量表',
  4. style: {
  5. fill: '#fff'
  6. }
  7. },
  8. series: [
  9. {
  10. type: 'gauge',
  11. data: [ { name: 'itemA', value: 55 } ],
  12. center: ['50%', '55%'],
  13. axisLabel: {
  14. formatter: '{value}%',
  15. style: {
  16. fill: '#fff'
  17. }
  18. },
  19. axisTick: {
  20. style: {
  21. stroke: '#fff'
  22. }
  23. },
  24. animationCurve: 'easeInOutBack'
  25. }
  26. ]
  27. }