函數中的變量含義如下:
Description:對此結構的描述。
Title:在樹形結構(TreeVIEw)中顯示的標題。
Types:要把此類顯示在哪個樹形結構的區域中。若有多個Types,則把此類分入不同的樹形區域中。例 如MasterPane Sample在Tutorial Sample和 Special Features兩個區域都有。見圖中的相應區域標注。
myPane.Title = "My Test Graphn(For CodeProject Sample)";
myPane.XAxis.Title = "My X Axis";
myPane.YAxis.Title = "My Y Axis";
分別指定這個Pane的title、XAxis和YAxis的標題。見上圖。
PointPairList list1 = new PointPairList();
PointPairList list2 = new PointPairList();
for ( int i=0; i<36; i++ )
{
double x = (double) i + 5;
double y1 = 1.5 + Math.Sin( (double) i * 0.2 );
double y2 = 3.0 * ( 1.5 + Math.Sin( (double) i * 0.2 ) );
list1.Add( x, y1 );
list2.Add( x, y2 );
}
PointPairList類是一個集合類,繼承自
System.Object
System.Collections.CollectionBase ZedGraph.CollectionPlus