TimelineHistogramScaleColumn

Configs

2

Other

Array of objects representing the scale column scale points. The config basically is a mapping to the column scalePoints config.

If the config value is not provided the column will try reading it from the displayed record field (scalePoints field is expected by default).

new TimelineHistogram({
    scalePoints : [
        { text : '8h', value : 8 },
        { text : '16h', value : 16 },
        { text : '24h', value : 24 }
    ]
})

Scale column

An object with configuration for the ScaleColumn.

Example:

new TimelineHistogram({
    scaleColumn : {
        width : 50
    },
    ...
});

Provide null to the config to get rid of the column completely:

new TimelineHistogram({
    // do not add scale column
    scaleColumn : null,
    ...
});

Properties

4

Class hierarchy

isTimelineHistogramScaleColumn: Boolean= truereadonly
Identifies an object as an instance of TimelineHistogramScaleColumn class, or subclass thereof.
isTimelineHistogramScaleColumn: Boolean= truereadonlystatic
Identifies an object as an instance of TimelineHistogramScaleColumn class, or subclass thereof.

Other

Array of objects representing the scale column scale points. The config basically is a mapping to the column scalePoints config.

If the config value is not provided the column will try reading it from the displayed record field (scalePoints field is expected by default).

new TimelineHistogram({
    scalePoints : [
        { text : '8h', value : 8 },
        { text : '16h', value : 16 },
        { text : '24h', value : 24 }
    ]
})

Scale column

The locked grid scale column reference.

Functions

1

Renders record scale column content.

ParameterTypeDescription
recordModel

Record to render scale for

renderDataObject