Version

GetMatchingBuckets Method (Series)

Gets the data values present at a given point.
Syntax
'Declaration
 
Protected Friend Overridable Function GetMatchingBuckets( _
   ByVal categoryAxis As CategoryAxisBase, _
   ByVal buckets As List(Of Double()), _
   ByVal bucketSize As Integer, _
   ByVal firstBucket As Integer, _
   ByVal world As Point, _
   ByVal skipUnknowns As Boolean _
) As Double()
protected internal virtual double[] GetMatchingBuckets( 
   CategoryAxisBase categoryAxis,
   List<double[]> buckets,
   int bucketSize,
   int firstBucket,
   Point world,
   bool skipUnknowns
)

Parameters

categoryAxis
The axis in context.
buckets
The data values for the series.
bucketSize
The number of data items represented by each bucket of data values.
firstBucket
The index of the first visible bucket of data values on the axis.
world
The world coordinates to use.
skipUnknowns
If true, unknown values will be skipped.

Return Value

An array of buckets containing data values.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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