SetPlotType (Reserved Word)
This reserved word sets the data type of the specified plot, typically in a RadarScreen cell. SetPlotType changes the type attribute and applies it to a given plot only once when the EasyLanguage code is evaluated.
SetPlotType(Number, DataType);
Number is a number from 1 to 99 representing the number of the plot to modify. DataType is the EasyLanguage data type to be used for the plot (see table below). For example, this allows you to change the plot display type of data in a RadarScreen cell (from Double to Date) .
DataType | |
Name | Value |
ptDate | 25 |
ptDateTime | 27 |
ptDouble | 28 |
ptFloat | 29 |
ptInvalid | 3 |
ptProbability | 4 |
ptString | 2 |
ptTime | 26 |
ptTrueFalse | 1 |