Function
cloneTextData
(textData: VegaDeckGl.types.VegaTextLayerDatum[], color: VegaDeckGl.RGBAColor)
Source from the content-addressed store, hash-verified
| 19 | } |
| 20 | |
| 21 | function cloneTextData(textData: VegaDeckGl.types.VegaTextLayerDatum[], color: VegaDeckGl.RGBAColor) { |
| 22 | return textData.map(t => { |
| 23 | return { ...t, color }; |
| 24 | }); |
| 25 | } |
| 26 | |
| 27 | export function recolorAxes(stage: VegaDeckGl.types.Stage, oldColors: SpecColorSettings, newColors: SpecColorSettings): Partial<VegaDeckGl.types.Stage> { |
| 28 | const hasNewLineColor = newColors.axisLine && newColors.axisLine !== oldColors.axisLine; |
Tested by
no test coverage detected