Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PointSeriesDataPoint

Interface for data points that can be added to a PointSeries.

Index

Properties

Properties

Optional Readonly color

color : Color

Data point color.

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 rotation

rotation : undefined | number

Data point rotation as radians.

 // A degree rotation can be easily translated to radians with the below formula.
 rotation: rotationDeg * Math.PI / 180

Can be used for individual configuration of data points rotation.

For some series types, individually rotated data points 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

Numeric 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 value

value : undefined | number

Numeric 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.