Interface PolarOptions<CursorPointMarkerType, CursorResultTableBackgroundType>

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

Example usage:

// Specified AutoCursor ResultTable Background
{ polarChartOptions: { autoCursorBuilder: AutoCursorBuilders.Polar.setResultTableBackground(UIBackgrounds.Circle) } }

Type Parameters

Hierarchy

Properties

autoCursorBuilder?: AutoCursor2DBuilder<CursorPointMarkerType, CursorResultTableBackgroundType>

Builder for the charts' auto cursor. Use AutoCursorBuilders.Polar to modify the default builder, using methods of AutoCursor2DBuilder.

 // Example, change cursor ResultTable background shape.
const chart = LightningChart.Polar({
autoCursorBuilder: AutoCursorBuilders.Polar
.setResultTableBackground(UIBackgrounds.Circle)
})
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