Interface SpiderOptions<CursorPointMarkerType, CursorResultTableBackgroundType>

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

Example usage:

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

Type Parameters

Hierarchy

Properties

autoCursorBuilder?: AutoCursor2DBuilder<CursorPointMarkerType, CursorResultTableBackgroundType>

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

 // Example, change cursor ResultTable background shape.
const chart = LightningChart.Spider({
autoCursorBuilder: AutoCursorBuilders.Spider
.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