RealGrid2 API
Interface
SeriesColumn

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]

GridColumn - ValueColumn

Example

let column = {
     "name": "sparkCol",
     "type": "series",
     "fieldNames": "201901..201909",
     "width": 150,
     "renderer": {
         "type": "sparkcolumn"
     },
     "header": {
         "text": "Spark Column"
     }
}

Properties

PropertyTypeDescription
actualTargetbooleanDisplayed in order of actual, target or not
fieldNamesstringSet 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"