Optional animationsConvenience flag that can be used to enable/disable all animations in a component.
Optional autoBuilder 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)
})
Optional disableConvenience flag that can be used to disable all animations in a component.
Deprecated in v5.0.0. Use animationsEnabled instead (note that value should be inverted from previous applications!)
Interface for readonly configuration of PolarChart.
Some properties of
PolarChartcan only be configured when it is created. These arguments are all optional, and are wrapped in a single object parameter:Watch out! The full set of available readonly configuration parameters depends on if the chart is standalone, or inside a dashboard:
For standalone
PolarChart, more parameters are documented in Polar.For dashboard
PolarChart, more parameters are documented in createPolarChart.Commonly used properties:
Example usage: