com.nchart3d.NChart.NChartRawArrayElementType Enum Reference

The NChartRawArrayElementType enum provides types of elements encoded in raw arrays, for example, NChartScatterArray. More...

Public Attributes

 XY
 Each two subsequent values in the raw array represent X and Y correspondingly.
 
 XYValue
 Each three subsequent values in the raw array represent X, Y, and Value correspondingly. More...
 
 XYValueSize
 Each four subsequent values in the raw array represent X, Y, Value, and Size correspondingly. More...
 
 XYZValue
 Each four subsequent values in the raw array represent X, Y, Z, and Value correspondingly. More...
 
 XYColor
 Each three subsequent values in the raw array represent X, Y, and Color correspondingly. More...
 
 XYColorSize
 Each four subsequent values in the raw array represent X, Y, Color, and Size correspondingly. More...
 
 XLowHigh
 Each three subsequent values in the raw array represent X, Low, and High correspondingly.
 

Detailed Description

The NChartRawArrayElementType enum provides types of elements encoded in raw arrays, for example, NChartScatterArray.

Member Data Documentation

com.nchart3d.NChart.NChartRawArrayElementType.XYColor

Each three subsequent values in the raw array represent X, Y, and Color correspondingly.

Color is a packed RGBA value encoded as a double:

color = (double)(((r & 0xFF) << 24) | ((g & 0xFF) << 16) | ((b & 0xFF) << 8) | (a & 0xFF))

, where r, g, b, a are integers in range 0..255.

com.nchart3d.NChart.NChartRawArrayElementType.XYColorSize

Each four subsequent values in the raw array represent X, Y, Color, and Size correspondingly.

Color is represented as described in XYColor. Size is a scatter marker diameter given in pixels.

com.nchart3d.NChart.NChartRawArrayElementType.XYValue

Each three subsequent values in the raw array represent X, Y, and Value correspondingly.

Value is an auxiliary number used for coloring via the brush scales (see NChartBrushScale).

com.nchart3d.NChart.NChartRawArrayElementType.XYValueSize

Each four subsequent values in the raw array represent X, Y, Value, and Size correspondingly.

Value is an auxiliary number used for coloring via the brush scales (see NChartBrushScale).

com.nchart3d.NChart.NChartRawArrayElementType.XYZValue

Each four subsequent values in the raw array represent X, Y, Z, and Value correspondingly.

Value is an auxiliary number used for coloring via the brush scales (see NChartBrushScale).