Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Point3D

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

Required properties:

Optional properties:

 // 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,
     }
 ])

Index

Properties

Optional Readonly color

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.

Optional Readonly size

size : undefined | 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.

Optional Readonly sizeAxisX

sizeAxisX : undefined | 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.

Optional Readonly sizeAxisY

sizeAxisY : undefined | 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.

Optional Readonly sizeAxisZ

sizeAxisZ : undefined | 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.

Optional Readonly value

value : undefined | 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.

Readonly x

x : number

Location in X-dimension.

Readonly y

y : number

Location in Y-dimension.

Readonly z

z : number

Location in Z-dimension.