Object used in Special Column Style function

TypeScript
export interface StyledColumn extends
Extends

SuspendableObject

Properties

PropertyDescription
BadgeStyleDisplays cell values in Column as a Badge
ColumnIdColumn being styled
GradientStyleStyles a numeric column with a Gradient
PercentBarStyleStyles a numeric column so each cell displays a 'Bar'
SparklineStyleDisplays a Sparkline Chart in an array column
IsReadOnlySets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
IsSuspendedSuspends (i.e. turns off) an Adaptable Object

Property Details

BadgeStyle

Displays cell values in Column as a Badge

TypeScript
BadgeStyle?: BadgeStyle;
Property Value

BadgeStyle

ColumnId

Column being styled

TypeScript
ColumnId: string;
Property Value

string

GradientStyle

Styles a numeric column with a Gradient

TypeScript
GradientStyle?: GradientStyle;
Property Value

GradientStyle

PercentBarStyle

Styles a numeric column so each cell displays a 'Bar'

TypeScript
PercentBarStyle?: PercentBarStyle;
Property Value

PercentBarStyle

SparklineStyle

Displays a Sparkline Chart in an array column

TypeScript
SparklineStyle?: SparklineStyle;
Property Value

SparklineStyle

IsSuspended

Inherited from SuspendableObject

Suspends (i.e. turns off) an Adaptable Object

TypeScript
IsSuspended?: boolean;
Property Value

boolean

IsReadOnly

Inherited from AdaptableObject

Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')

TypeScript
IsReadOnly?: boolean;
Property Value

boolean