TabCaption

Declaration: ChartBook.TabCaption[ix: integer]: string;
The array property TabCaption controls the caption of the chart tab.

Example: The following code snippet shows how to set the caption of every tab of the figure above:
...
ChartBook.TabCaption[1] := 'Cross Section';
ChartBook.TabCaption[2] := 'Life Cycle';
ChartBook.TabCaption[3] := 'Raw Data';
...