(columnName)
| 3 | */ |
| 4 | |
| 5 | const isGeoColumn = (columnName) => { |
| 6 | if (columnName == 'zip_code' || columnName == 'city' || columnName == 'state') { |
| 7 | return true |
| 8 | } |
| 9 | return false |
| 10 | } |
| 11 | |
| 12 | export const getPlotConfig = (rows, cols) => { |
| 13 | let data = [] |