C# 클래스 Phresco.FusionCharts.Plots

Represents an array of plots to graph
파일 보기 프로젝트 열기: photon-infotech/sharepoint-resource-management 1 사용 예제들

공개 메소드들

메소드 설명
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