Table of Contents

Struct SeriesPoint

Namespace
LightningChartLib.WinForms.Charting
Assembly
LightningChart.WinForms.Charting.NET4.dll

Series point.

public struct SeriesPoint : IColoredPoint
Implements
Inherited Members

Constructors

SeriesPoint(double, double)

Constructor.

public SeriesPoint(double x, double y)

Parameters

x double

X value.

y double

Y value.

SeriesPoint(double, double, Color)

Constructor.

public SeriesPoint(double x, double y, Color color)

Parameters

x double

X value.

y double

Y value.

color Color

Color of the point. For more information see Color property.

SeriesPoint(double, double, object)

Constructor.

public SeriesPoint(double x, double y, object tag)

Parameters

x double

X value.

y double

Y value.

tag object

Tag, freely assignable object.

SeriesPoint(double, double, object, Color)

Constructor.

public SeriesPoint(double x, double y, object tag, Color color)

Parameters

x double

X value.

y double

Y value.

tag object

Tag, freely assignable object.

color Color

Color of the point. For more information see Color property.

Fields

Tag

Tag. Freely assignable object.

public object Tag

Field Value

object

X

X value.

public double X

Field Value

double

Y

Y value.

public double Y

Field Value

double

Properties

PointColor

Color of the point. This is used only if the series PointStyles IndividiualPointColor is not set to Off.

public Color PointColor { get; set; }

Property Value

Color

Methods

ToString()

Convert class description to string.

public override string ToString()

Returns

string

Class description as a string.