(mark)
| 147559 | const SymbolMark = "symbol"; |
| 147560 | const TextMark = "text"; |
| 147561 | function guideGroup(mark) { |
| 147562 | mark.type = GroupMark; |
| 147563 | mark.interactive = mark.interactive || false; |
| 147564 | return mark; |
| 147565 | } |
| 147566 | function lookup(spec, config) { |
| 147567 | const _ = (name, dflt)=>value(spec[name], value(config[name], dflt)); |
| 147568 | _.isVertical = (s)=>Vertical === value(spec.direction, config.direction || (s ? config.symbolDirection : config.gradientDirection)); |
no outgoing calls
no test coverage detected