csg-datav
Version:
Datav Document
17 lines (14 loc) • 403 B
JavaScript
const fullWidth = 300
const borderGap = 3
const borderWidth = 3
const usefulWidth = fullWidth - (borderGap + borderWidth) * 2
const pieceLength = [0.25, 0.5, 0.25]
const pieceGap = 3
const lineDash = pieceLength
.map(l => [usefulWidth * l, pieceGap])
.reduce((all, current) => [...all, ...current], [])
export default {
value: 100,
colors: ['#01c4f9', '#c135ff'],
lineDash
}