SeriesColumn
Column that displays one or more data values simultaneously
Signature:
export interface SeriesColumn extends ValueColumn
Extends: ValueColumn
Remarks
Instead of fieldName
, there is a property called fieldNames
.
It is applied by setting 'series'
in the type
attribute.
Inherits ValueColumn.
[Superclass]
Example
let column = {
"name": "sparkCol",
"type": "series",
"fieldNames": "201901..201909",
"width": 150,
"renderer": {
"type": "sparkcolumn"
},
"header": {
"text": "Spark Column"
}
}
Properties
Property | Type | Description |
---|---|---|
actualTarget | boolean | Displayed in order of actual, target or not |
fieldNames | string | Set field names |
type | "series" | type of column |
Properties Desc
actualTarget
Whether or not it is displayed in the order of actual and target
Type
- boolean
fieldNames
Set field names
Type
- string
type
type of column
Type
- "series"