source: code/Website/dot-net-library/written-by-xiao-yifang/OpenFlashChart/YAxisLabels.cs@ 7937

Last change on this file since 7937 was 7849, checked in by dennisw, 15 years ago
File size: 486 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenFlashChart
6{
7 public class YAxisLabels:AxisLabels
8 {
9 public override void SetLabels(IList<string> labelsvalue)
10 {
11 int pos = 0;
12 if (labels == null)
13 labels = new List<object>();
14 foreach (string s in labelsvalue)
15 {
16 labels.Add(s);
17 pos++;
18 }
19 }
20 }
21}
Note: See TracBrowser for help on using the repository browser.