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

Last change on this file since 7937 was 7849, checked in by dennisw, 15 years ago
File size: 444 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using JsonFx.Json;
5
6namespace OpenFlashChart
7{
8 public class YAxisLabel:AxisLabel
9 {
10 private int? y;
11 [JsonProperty("y")]
12 public int? Y
13 {
14 get { return y; }
15 set { y = value; }
16 }
17 public YAxisLabel(string text,int ypos):base(text)
18 {
19 y = ypos;
20 }
21 }
22}
Note: See TracBrowser for help on using the repository browser.