C# Класс Phresco.FusionCharts.Plots

Represents an array of plots to graph
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Add ( string x, double y ) : void

Adds a new plot

Contains ( string x ) : bool

Returns true of the x value exists. Returns false if not.

Count ( ) : int

Returns the number of elements in the array

GetX ( int pos ) : string

Gets an x value based on its position in the array

GetY ( int pos ) : double

Gets an y value based on its position in the array

Plots ( ) : System

Constructor

SetY ( int pos, double value ) : void

Sets the y value for an existing plot

XIndexOf ( string x ) : int

Gets the index (position) of a element x

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

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

Adds a new plot
public Add ( string x, double y ) : void
x string a string for xValue
y double a double for yValue
Результат void

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

Returns true of the x value exists. Returns false if not.
public Contains ( string x ) : bool
x string
Результат bool

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

Returns the number of elements in the array
public Count ( ) : int
Результат int

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

Gets an x value based on its position in the array
public GetX ( int pos ) : string
pos int
Результат string

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

Gets an y value based on its position in the array
public GetY ( int pos ) : double
pos int
Результат double

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

Constructor
public Plots ( ) : System
Результат System

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

Sets the y value for an existing plot
public SetY ( int pos, double value ) : void
pos int The position of the plot to replace
value double The new y value
Результат void

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

Gets the index (position) of a element x
public XIndexOf ( string x ) : int
x string
Результат int