Skip to main content

Class LineSeriesPointCollection

A Collection of LineSeriesPoints

Assembly: MicroLayout.dll
View Source
public class LineSeriesPointCollection : IEnumerable<LineSeriesPoint>, IEnumerable

Implements:
System.Collections.Generic.IEnumerable<Meadow.Foundation.Graphics.MicroLayout.LineSeriesPoint>, System.Collections.IEnumerable

Properties

MinX

Gets the minimum X value in the collection

View Source
public double MinX { get; }

MinY

Gets the minimum Y value in the collection

View Source
public double MinY { get; }

MaxX

Gets the maximum X value in the collection

View Source
public double MaxX { get; }

MaxY

Gets the maximum Y value in the collection

View Source
public double MaxY { get; }

Count

Gets the number of points in the collection

View Source
public int Count { get; }

this[int]

View Source
public LineSeriesPoint this[int index] { get; }

Methods

Add(double, double)

Adds a point to the collection

View Source
public void Add(double x, double y)
Parameters
TypeNameDescription
System.DoublexThe point's X value
System.DoubleyThe point's Y value

Add(params LineSeriesPoint[])

Adds a point to the collection

View Source
public void Add(params LineSeriesPoint[] points)
Parameters
TypeNameDescription
Meadow.Foundation.Graphics.MicroLayout.LineSeriesPoint[]pointsThe point to add

Remove(LineSeriesPoint)

Removes a point to the collection

View Source
public void Remove(LineSeriesPoint point)
Parameters
TypeNameDescription
Meadow.Foundation.Graphics.MicroLayout.LineSeriesPointpointThe point to remove

Remove(params LineSeriesPoint[])

Removes a point to the collection

View Source
public void Remove(params LineSeriesPoint[] points)
Parameters
TypeNameDescription
Meadow.Foundation.Graphics.MicroLayout.LineSeriesPoint[]pointsThe points to remove

Clear()

Removes all points to the collection

View Source
public void Clear()

GetEnumerator()

Returns an enumerator that iterates through the collection.

View Source
public IEnumerator<LineSeriesPoint> GetEnumerator()
Returns

System.Collections.Generic.IEnumerator<Meadow.Foundation.Graphics.MicroLayout.LineSeriesPoint>: An enumerator that can be used to iterate through the collection.

Implements

  • System.Collections.Generic.IEnumerable<Meadow.Foundation.Graphics.MicroLayout.LineSeriesPoint>
  • System.Collections.IEnumerable