demo5.js 387 B

1234567891011121314151617
  1. const fullWidth = 300
  2. const borderGap = 3
  3. const borderWidth = 3
  4. const usefulWidth = fullWidth - (borderGap + borderWidth) * 2
  5. const pieceLength = [0.25, 0.5, 0.25]
  6. const pieceGap = 3
  7. const lineDash = pieceLength
  8. .map(l => [usefulWidth * l, pieceGap])
  9. .reduce((all, current) => [...all, ...current], [])
  10. export default {
  11. value: 100,
  12. colors: ['#01c4f9', '#c135ff'],
  13. lineDash
  14. }