"legendFont"

Sets the font for the trend legend.

Synopsis

setValue(string shape, "legendFont", string font);

getValue(string shape, "legendFont", string &font);

shape.legendFont(string font);

Parameters

Parameter Description
shape Name of the object
font The font type, for example, "Arial Black,-1,11,5,87,0,0,0,0,0".

Description

Sets the font for the legend.

Example

Sets the font for the legend to Arial Black (bold).

main()
{
  TREND1.legendFont(" Arial Black,-1,11,5,87,0,0,0,0,0");
  string retFont;
  getValue("TREND1","legendFont",retFont);
  DebugN("The font is:",retFont);
}

Assignment

Trend