WiggleRenderer
Note: this document is automatically generated from configuration objects in our source code. See Config guide for more info
Source file
plugins/wiggle/src/configSchema.ts
this is the "base wiggle renderer config schema"
WiggleRenderer - Slots
slot: color
color: {
type: 'color',
description: 'the color of track, overrides posColor and negColor',
defaultValue: '#f0f',
}
slot: posColor
posColor: {
type: 'color',
description: 'the color to use when the score is positive',
defaultValue: 'blue',
}
slot: negColor
negColor: {
type: 'color',
description: 'the color to use when the score is negative',
defaultValue: 'red',
}
slot: clipColor
clipColor: {
type: 'color',
description: 'the color of the clipping marker',
defaultValue: 'red',
}
slot: bicolorPivot
bicolorPivot: {
type: 'stringEnum',
model: types.enumeration('Scale type', [
'numeric',
'mean',
'z_score',
'none',
]),
description: 'type of bicolor pivot',
defaultValue: 'numeric',
}
slot: bicolorPivotValue
bicolorPivotValue: {
type: 'number',
defaultValue: 0,
description: 'value to use for bicolor pivot',
}