Vizzu-Story / Exports / Vizzu / Data
Namespace: Data
Vizzu.Data
Interfaces
- AbstractSeriesInfo
- Cube
- CubeData
- DimensionSeriesInfo
- Filter
- MeasureSeriesInfo
- Metainfo
- Range
- Record
- Series
- SeriesMetaInfo
- TableByRecords
- TableBySeries
Type Aliases
AggregatorType
Ƭ AggregatorType: "sum"
| "count"
| "min"
| "max"
| "mean"
|
"distinct"
Types of the different available data series aggregators:
- sum: sum of the values (default)
- count: count of the values
- min: minima of the values
- max: maxima of the values
- mean: average/mean of the values
- distinct: number of different values
CubeRow
FilterCallback
Ƭ FilterCallback: (record
: Record
)
=> boolean
Type declaration
▸ (record
): boolean
Parameters
Name | Type |
---|---|
record |
Record |
Returns
boolean
SeriesDescriptor
Ƭ SeriesDescriptor: SeriesName
|
`${AggregatorType}(${SeriesName})`
The name of a series either alone or combined with an aggregator function.
SeriesInfo
Ƭ SeriesInfo:
DimensionSeriesInfo
|
MeasureSeriesInfo
SeriesList
Ƭ SeriesList: SeriesDescriptor
[] |
SeriesDescriptor
SeriesName
Ƭ SeriesName: string
Name of the data series.
Set
Ƭ Set: TableBySeries
|
TableByRecords
|
Cube
Data set is a collection of related data series. Each chart works on a single data set.
Value
Ƭ Value: string
| number
Represents a categorical or data value
ValueArray
Ƭ ValueArray: Value
[]
Values of a data record in the order of the series in the dataset.
Values
Ƭ Values: string
[] | number
[]
List of data values in a series.