"legendDTV"
    
    Returns TRUE if the legend shows the Date/Time/Value details or FALSE if the legend shows only the curve description.
Synopsis
setValue(string shape, "legendDTV", bool);
getValue(string shape, "legendDTV", bool &);
shape.legendDTV(bool);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| bool | 
                                 TRUE = Legend shows Date/Time/Value details. FALSE = Legend shows only the curve description.  | 
                        
Description
Returns TRUE if the legend shows the Date/Time/Value details or FALSE if the legend shows only the curve description.
                
                Example
            
The following example returns TRUE if the legend shows the Date/Time/Value details or FALSE if the legend shows only the curve description.
main()
{
  bool leg;
  getValue("TREND1","legendTV",leg);
  DebugN(leg);
}
        Assignment
Trend
