Files
ga-covid.thederf.com/src/components/charts/util.js
2021-12-29 22:03:12 -05:00

8 lines
271 B
JavaScript

export const colors = ['#f5f3ff','#ede9fe','#ddd6fe','#c4b5fd','#a78bfa','#8b5cf6','#7c3aed','#6d28d9','#5b21b6','#4c1d95']
export function col(data, row, column) {
const index = data.value.headers.indexOf(column)
if (index === -1) return null
return row[index]
}