Interface PieOptions<PieChartType>

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

Example usage:

// Pie Chart with default type
undefined
// Pie Chart* with specified type
{ pieChartOptions: { type: PieChartTypes.PieChartWithLabelsOnSides } }

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?: PieChartType

Specify pie chart visual design from a collection of options.

Options are located in PieChartTypes collection. If undefined, will default to PieChartTypes.LabelsOnSides.