Retrieves the characters to be treated as separators in the string arguments of the SetSeriesValuesFromString, SetCategoriesFromString and SetDataFromTxtFile methods.

string object->GetSeparators( ) 

Arguments

object
Required. A Chart object.

Return Value

An string containing the separators used by the chart object.

PHP Code Sample

The following PHP code illustrates use of the GetSeparators method.

// Retrieve the separators
$sep= $chart->GetSeparators();

// Add ':' in the separators list if necessary
if( !strchr($sep,":") )
  $chart->SetSeparators( $sep . ":", false );

See Also

SetSeparators Method | SetSeriesValuesFromString Method | SetCategoriesFromString Method | SetDataFromTxtFile Method | SetUnicode Method

Applies To: Chart Object