Namespace: GlobFX.SwiffChartGenerator
Assembly: GlobFX.SwiffChartGenerator (in GlobFX.SwiffChartGenerator.dll)

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

Visual Basic
Public Function GetSeparators As String
C#
public string GetSeparators(); 

Return Value

An string containing the separators used by the chart object.

Code Sample

The following code illustrates use of the GetSeparators method.

Visual Basic
' Retrieve the separators
Dim sep As String = chart.GetSeparators()

' Add ':' in the separators list
chart.SetSeparators( sep + ":", False )
C#
// Retrieve the separators
string sep= chart.GetSeparators();

// Add ':' in the separators list
chart.SetSeparators( sep + ":", false );

See Also

SetSeparators Method | SetSeriesValuesFromString Method | SetCategoriesFromString Method | SetDataFromTxtFile Method

Applies To: Chart Object