GetDataSeries Method
See Also 
Xceed.Chart.Core Assembly > Xceed.Chart.Core Namespace > Series Class : GetDataSeries Method


included
a bitmask specifying the included data series
excluded
a bitmask specifying the explicitly excluded data series
forceAlign
a flag specifying whether the data series included in the collection must be explicitly aligned
Virtual method returning a collection of the data series that the series uses.

Syntax

Visual Basic (Declaration) 
Overrides Public Function GetDataSeries( _
   ByVal included As DataSeriesMask, _
   ByVal excluded As DataSeriesMask, _
   ByVal forceAlign As Boolean _
) As DataSeriesCollection
Visual Basic (Usage)Copy Code
Dim instance As Series
Dim included As DataSeriesMask
Dim excluded As DataSeriesMask
Dim forceAlign As Boolean
Dim value As DataSeriesCollection
 
value = instance.GetDataSeries(included, excluded, forceAlign)
C# 
public override DataSeriesCollection GetDataSeries( 
   DataSeriesMask included,
   DataSeriesMask excluded,
   bool forceAlign
)

Parameters

included
a bitmask specifying the included data series
excluded
a bitmask specifying the explicitly excluded data series
forceAlign
a flag specifying whether the data series included in the collection must be explicitly aligned

Return Value

A DataSeriesCollection object containing the data series.

Remarks

The included series are controlled with the included and excluded parameters. The data series are included in the following order:
  • Values
  • Labels
  • Appearance.FillEffects
  • Appearance.LineProperties
  • Interactivity.Tooltips
  • Interactivity.Cursors

Requirements

Target Platforms: Windows 2000, Windows XP SP3 Family, Windows Server 2003-2008 Family, Windows Vista, Windows 7

See Also