- Index
- »
- axon
- »
- func:toGrid
def
func:toGrid
toGrid(val, meta: null)
Given an arbitrary object, translate it to a Grid via Etc.toGrid
:
- if grid just return it
- if row in grid of size, return row.grid
- if scalar return 1x1 grid
- if dict return grid where dict is only
- if list of dict return grid where each dict is row
- if list of non-dicts, return one col grid with rows for each item
Example:
// create simple grid with dis,age cols and 3 rows: [{dis:"Bob", age:30}, {dis:"Ann", age:40}, {dis:"Dan", age:50}].toGrid