Element: DataRaster.

Icon: 

Text: A 2D display of colored data points.

Description: A DataRaster is a drawing element that displayes a sequence of planar points with a given color for each of the points. It works similarly to a Trace, in the sense that the points to display are added sequentially by providing the array with its coordinates and are visualized as color dots.

Table of properties

Name Description Values accepted
Configuration
X The X coodinates for the points to add to the display. A one-dimensional array [n] of type double, where n indicates the number of points to add to the set.

Alternatively, a constant or variable of type double or int, that sets the same value to all the elements of the input data.

Y The Y coodinates for the points to add to the display. A one-dimensional array [n] of type double, where n indicates the number of points to add to the set.

Alternatively, a constant or variable of type double or int, that sets the same value to all the elements of the input data.

Index The integer values to codify the color of the points. A one-dimensional array [n] of type int, where n indicates the number of points to add to the set.The element translates this index into a color.

Alternatively, a constant or variable of type int, that sets the same index color to all the elements of the input data.

Graphical Aspect
Visible The visibility of the element. A boolean variable or one of the constants true or false.
Configuration
Minimum X The minimum value in the X axis of the rectangular area of the plane displayed. Any constant or variable of type double or int.
Maximum X The maximum value in the X axis of the rectangular area of the plane displayed. Any constant or variable of type double or int.
Minimum Y The minimum value in the Y axis of the rectangular area of the plane displayed. Any constant or variable of type double or int.
Maximum Y The maximum value in the Y axis of the rectangular area of the plane displayed. Any constant or variable of type double or int.