C# Class YAMP.HeatmapPlotValue

Contains the data for heatmap plots.
Inheritance: XYPlotValue
Exibir arquivo Open project: FlorianRappl/YAMP Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
AddPoints ( MatrixValue M ) : void

Inspects the given matrix and sets the series to this matrix M.

Deserialize ( byte content ) : Value

Converts a set of bytes to a new instance.

HeatmapPlotValue ( ) : System

Creates a new instance.

Serialize ( ) : byte[]

Converts the given instance to an array of bytes.

this ( int index, int point ) : HeatPoint

Gets one particular point of a heatmap series (we only have 1 heatmap series!).

this ( int index ) : Points

Gets a series of HeatPoints (here we have only 1 series).

Method Details

AddPoints() public method

Inspects the given matrix and sets the series to this matrix M.
public AddPoints ( MatrixValue M ) : void
M MatrixValue The matrix to investigate.
return void

Deserialize() public method

Converts a set of bytes to a new instance.
public Deserialize ( byte content ) : Value
content byte The binary representation.
return Value

HeatmapPlotValue() public method

Creates a new instance.
public HeatmapPlotValue ( ) : System
return System

Serialize() public method

Converts the given instance to an array of bytes.
public Serialize ( ) : byte[]
return byte[]

this() public method

Gets one particular point of a heatmap series (we only have 1 heatmap series!).
public this ( int index, int point ) : HeatPoint
index int Obsolete since we only have 1 series.
point int The point to get (0.. N - 1, where N is the number of points).
return HeatPoint

this() public method

Gets a series of HeatPoints (here we have only 1 series).
public this ( int index ) : Points
index int Obsolete (always returns the same).
return Points