TrendImage property: Tile class

Description

Use the TrendImage property to set a String value indicating which optional trend arrow (up or down) to display.

Use either of these built-in constant values to set the trend image: %This.k_strTrendUpImage or %This.k_strTrendDownImage.

Alternatively, you can specify a custom trend image by specifying the image ID using the following syntax:

%This.TrendImage
= "MY_TREND_UP";

This property is read/write.

Example

%This.hasLiveDataDescr = True;
%This.TileLiveData_2 = NumberToString("%10.2v", &nMetric) | "%";
%This.isTileLiveData_2_Metrics = True;

/* A trend arrow is an optional element of live data. */
%This.hasLivedataTrendImage = True; 
%This.TrendImage = %This.k_strTrendUpImage;