Interface IPointList
An interface to a collection class containing data that define the set of points to be displayed on the curve.
Inherited Members
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
public interface IPointList : ICloneable
Remarks
This interface is designed to allow customized data abstraction. The default data collection class is PointPairList, however, you can define your own data collection class using the IPointList interface.
Properties
| Improve this Doc View SourceCount
Gets the number of points available in the list.
Declaration
int Count { get; }
Property Value
Type | Description |
---|---|
Int32 |
Item[Int32]
Indexer to access a data point by its ordinal position in the collection.
Declaration
PointPair this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The ordinal position (zero-based) of the data point to be accessed. |
Property Value
Type | Description |
---|---|
PointPair | A PointPair object instance. |
Remarks
This is the standard interface that ZedGraph uses to access the data. Although you must pass a PointPair here, your internal data storage format can be anything.