C# Класс YAMP.XYPlotValue

Abstract base class for plot values that are based on an XY (or similar) coordinate system.
Наследование: PlotValue
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
annotations List
points List

Private Properties

Свойство Тип Описание
Deserialize void
Serialize void

Открытые методы

Метод Описание
AddPoints ( MatrixValue m ) : void

Adds points to the plot.

AddSeries ( IPointSeries series, bool nameSeries = true, bool colorSeries = true ) : void

Adds a new series to the plot. This function automatically selects a new color for the series, such that no color should be taken twice.

GetSeries ( int index ) : IPointSeries

Gets the specified series as an IPointSeries.

SetXRange ( double min, double max ) : void

Sets the x-range (min and max) in one statement.

SetYRange ( double min, double max ) : void

Sets the y-range (min and max) in one statement.

XYPlotValue ( ) : System

Creates a new instance.

Защищенные методы

Метод Описание
InitializeBoundaries ( ) : void

Initializes the values MinX, MaxX, MinY and MaxY.

Приватные методы

Метод Описание
Deserialize ( Deserializer ds ) : void
Serialize ( Serializer s ) : void

Описание методов

AddPoints() публичный абстрактный Метод

Adds points to the plot.
public abstract AddPoints ( MatrixValue m ) : void
m MatrixValue The given matrix.
Результат void

AddSeries() публичный Метод

Adds a new series to the plot. This function automatically selects a new color for the series, such that no color should be taken twice.
public AddSeries ( IPointSeries series, bool nameSeries = true, bool colorSeries = true ) : void
series IPointSeries The series to add.
nameSeries bool Should the series be named?
colorSeries bool Should the series be colored automatically?
Результат void

GetSeries() публичный Метод

Gets the specified series as an IPointSeries.
public GetSeries ( int index ) : IPointSeries
index int The 0-based index of the series.
Результат IPointSeries

InitializeBoundaries() защищенный Метод

Initializes the values MinX, MaxX, MinY and MaxY.
protected InitializeBoundaries ( ) : void
Результат void

SetXRange() публичный Метод

Sets the x-range (min and max) in one statement.
public SetXRange ( double min, double max ) : void
min double The minimum for the x-axis.
max double The maximum for the x-axis.
Результат void

SetYRange() публичный Метод

Sets the y-range (min and max) in one statement.
public SetYRange ( double min, double max ) : void
min double The minimum for the y-axis.
max double The maximum for the y-axis.
Результат void

XYPlotValue() публичный Метод

Creates a new instance.
public XYPlotValue ( ) : System
Результат System

Описание свойств

annotations защищенное свойство

The contained annotations.
protected List annotations
Результат List

points защищенное свойство

The various included series.
protected List points
Результат List