Specifies the caption for a series defined by its index in a chart.
void object->SetSeriesCaption( int index, string caption )
By default, a new data series added to a chart has no caption.
If the index argument refers to a series that does not exist in the chart object, the series is created.
The following PHP code illustrates use of the SetSeriesCaption method.
$values= array(); $values[0] = 10.5; $values[1] = 12.4; $values[2] = 15.9; $chart->SetSeriesValuesFromArray(0, $values); $chart->SetSeriesCaption(0, "Turnover in Million dollars"); $chart->LoadStyle("C:\\myStyle.scs"); $chart->ExportAsResponse();
GetSeriesCaption Method | GetSeriesValue Method | GetSeriesCount Method
Applies To: Chart Object