Optional
colorLogScale?: booleanOptional
colors?: ColorsAn array of rgb hex colors. In the case of a "text"
column the colors
should match the values
. For number columns, the list represents
colors that will be interpolated. If not specified, default color pallettes will be supplied.
Optional
data?: DataStructureTypes[T]In the case of a double/integer (number) column, the array
buffer should be the appropriate size to contain float32s. For text it should be Uint8
and contain numbers corresponding to the indexes in the values parameter. For a column of
be added later see DataStore#setColumnData.
A
the datatype- can be one of
"double"
- any floating point data"integer"
- any integer data"text"
- data containing strings but with no more than 256 categories"text16"
- data containing strings with up to 65536 categories"unique"
- data containing strings but with many categories"multitext"
-Optional
delimiter?: T extends "multitext" ? string : neverOptional
dirty?: booleanif true
then the store will keep a record that this column has been added and is not permanently stored in the backend
Optional
editable?: booleanwhether the column's data can be changed
id of the column, used internally
return the value corresponding to a given row index i
. If the data is categorical, this will be the appropriate value from values
Optional
is_url?: T extends CategoricalDataType ? boolean : neverthe column's values will be displayed as links (text and unique columns only). not sure if this is strictly boolean or can be undefined
the min max values in the column's values (integer/double only)
human-readable column
an object describing the 0.05,0.01 and 0,001 qunatile ranges (integer/double only)
Optional
sgindex?: numberOptional
sgtype?: "dense" | "sparse"Optional
subgroup?: SubgroupName
if
true
then the colors will be displayed on a log scale- useful if the dataset contains outliers. Because a symlog scale is used the data can contain 0 and negative values