Interface for a data-structure which represents a 3-dimensional location.

Required properties:

  • x | coordinate along X Axis.
  • y | coordinate along Y Axis.
  • z | coordinate along Z Axis.

Optional properties:

  • color | data point color.
  • size | data point size.
  • value | data point value for dynamic coloring.
 // Example syntax,
PointSeries3D.add([
{
x: 0,
y: 0,
z: 0,
// `color` can be used for individual point coloring.
color: ColorRGBA(255, 0, 0),
// `size` can be used for individual point sizing.
size: 5.0,
// `value` can be used for dynamic point coloring.
value: 160.0,
}
])

Hierarchy

  • Point3D

Properties

color?: Color

Optional Color associated with the data point.

Can be used for individual data point coloring when styled with IndividualPointFill.

For some series types, individual data point coloring might have to be explicitly enabled when the series is created. Refer to series documentation for more detailed information.

size?: number

Optional Size associated with the data point.

Can be used for individual configuration of data points size.

For some series types, individually sized data points might have to be explicitly enabled when the series is created. Refer to series documentation for more detailed information.

sizeAxisX?: number

Optional Size on X Axis associated with the data point.

Can be used for individual configuration of data points size along Axis dimensions.

For some series types, individually sized data points might have to be explicitly enabled when the series is created. Refer to series documentation for more detailed information.

sizeAxisY?: number

Optional Size on Y Axis associated with the data point.

Can be used for individual configuration of data points size along Axis dimensions.

For some series types, individually sized data points might have to be explicitly enabled when the series is created. Refer to series documentation for more detailed information.

sizeAxisZ?: number

Optional Size on Z Axis associated with the data point.

Can be used for individual configuration of data points size along Axis dimensions.

For some series types, individually sized data points might have to be explicitly enabled when the series is created. Refer to series documentation for more detailed information.

value?: number

Optional Value associated with the data point.

Can be used for dynamic per data point coloring when associated with a Color lookup table LUT.

For some series types, dynamic data point coloring might have to be explicitly enabled when the series is created. Refer to series documentation for more detailed information.

x: number

Location in X-dimension.

y: number

Location in Y-dimension.

z: number

Location in Z-dimension.