Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / StockSeries Class / GetDataSeries Method
mask specifying the included data series
mask specifying the explicitly excluded data series
a flag specifying whether the data series included in the collection must be explicitly aligned


    GetDataSeries Method (StockSeries)
    Virtual method returning a collection of the data series that the series uses. The included series are controlled with the included and excluded parameters.
    Syntax
    'Declaration
     
    Public Overrides Function GetDataSeries( _
       ByVal included As DataSeriesMask, _
       ByVal excluded As DataSeriesMask, _
       ByVal forceAlign As Boolean _
    ) As DataSeriesCollection
     
    'Usage
     
    Dim instance As StockSeries
    Dim included As DataSeriesMask
    Dim excluded As DataSeriesMask
    Dim forceAlign As Boolean
    Dim value As DataSeriesCollection
     
    value = instance.GetDataSeries(included, excluded, forceAlign)

    Parameters

    included
    mask specifying the included data series
    excluded
    mask specifying the explicitly excluded data series
    forceAlign
    a flag specifying whether the data series included in the collection must be explicitly aligned
    Remarks
    Note that since the OpenValues can also be accessed from the Values property of the Series class (base of XYScatterSeries), they will be included in the collection if the included mask contains the Values flag. This method first invokes the XYScatterSeries implementation and afterwards adds the following series:
    • HighValues
    • LowValues
    • CloseValues
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also