Interface FunnelOptions<FunnelChartType>

Interface that can be used to define FunnelChart configurations, when inside a Dashboard, that can't be changed after creation.

Example usage:

// Funnel Chart with default type
undefined
// Funnel Chart with specified type
{ funnelOptions: { type: FunnelChartTypes.LabelsOnSides } }

Type Parameters

Hierarchy

Properties

columnIndex: number

Column index on dashboard (X location, 0 = left)

columnSpan?: number

Column span (X width), default = 1

disableAnimations?: boolean

Optional flag that can be used to disable all animations by default.

rowIndex: number

Row index on dashboard (Y location, 0 = top)

rowSpan?: number

Row span (Y height), default = 1

type?: FunnelChartType

Interface for specifying desired "type" of Funnel Chart. This can be used to select different rendering approaches, mainly reflecting how Slice Labels are positioned.

Options are located in FunnelChartTypes-collection. If undefined, will default to FunnelChartWithLabelsOnSides.