Tilechart property: Tile class
Description
Use the Tilechart property to instantiate a Chart object for this tile. Using this property is required when the tile content is set to either chart or chart plus one KPI. After associating a Chart object to this property, you can define additional properties and invoke methods on the Chart object to specify its characteristics.
This property is read/write.
Example
Local Chart &my_Chart;
Local Rowset &rowset;
&rowset = CreateRowset(Record.MY_CHART_DATA);
&rowset.Flush();
&rowset.Fill();
/* IMPORTANT: Instantiate your Chart object with this property.
&my_Chart = %This.Tilechart;
&my_Chart.SetData(&rowset);
/* Invoke other Chart class methods and set Chart class properties. */