GetOrCreateDataPointByIdx

IChartDataPointCollection.GetOrCreateDataPointByIdx method

If collection already contains data point with index index then returns this data point. If collection doesn’t contains data point with index index==N (when number of data points in this collection is less or equal then N) then adds deficient data points and returns last (which has requested index). For example, collection indexes are {0, 1, 2}, and requested index is 5. Then method adds deficient data points: {0, 1, 2, 3, 4, 5}. And returns data point with index 5.

public IChartDataPoint GetOrCreateDataPointByIdx(uint index)
ParameterTypeDescription
indexUInt32Index.

Return Value

Returns data point with requested index.

See Also