Options
All
  • Public
  • Public/Protected
  • All
Menu

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) } }

Index

Properties

Optional autoCursorBuilder

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

columnIndex : number

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

Optional columnSpan

columnSpan : undefined | number

Column span (X width), default = 1

Optional disableAnimations

disableAnimations : undefined | false | true

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

rowIndex

rowIndex : number

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

Optional rowSpan

rowSpan : undefined | number

Row span (Y height), default = 1

Optional theme

theme : Theme

Theme used to style all elements inside the component. See Themes for pre-made options.