Returns the number of series in the chart object.

object.GetSeparators( ) 

Arguments

object
Required. A Chart object.

Return Value

An string containing the separators used by the chart object.

JScript Code Sample

The following JScript code illustrates use of the GetSeparators method.

// Retrieve the separators
sep= chart.GetSeparators();

// Add ':' in the separators list if necessary
if( sep.indexOf(':') == -1 )
  chart.SetSeparators( sep + ":", false );

See Also

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

Applies To: Chart Object