Interface ChartOptions3D<CursorResultTableBackgroundType>

Interface for readonly configuration of Chart3D.

Some properties of Chart3D can only be configured when it is created. These arguments are all optional, and are wrapped in a single object parameter:

 // Example, specify chart color theme.
const chart = LightningChart.Chart3D({
theme: Themes.light
})

Watch out! The full set of available readonly configuration parameters depends on if the chart is standalone, or inside a dashboard:

For standalone Chart3D, more parameters are documented in Chart3D.

For dashboard Chart3D, more parameters are documented in createChart3D.

Commonly used properties:

Example usage:

 // Example 1, create chart with default configuration.
const chart = LightningChart.Chart3D({})
 // Example 2, create chart with specified color theme.
const chart = LightningChart.Chart3D({
theme: Themes.light,
})

Type Parameters

Hierarchy

Properties

animationsEnabled?: boolean

Convenience flag that can be used to enable/disable all animations in a component.

cursorBuilder?: CursorBuilder3D<CursorResultTableBackgroundType>

Builder for the charts' auto cursor. Use CursorBuilders.D3 to modify the default builder, using methods of CursorBuilder3D.

 // Example, change cursor ResultTable background shape.
const chart = LightningChart.Chart3D({
cursorBuilder: CursorBuilders.D3
.setResultTableBackground(UIBackgrounds.Circle)
})