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 , 15 years ago | |
---|---|
File size: 444 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Text; |
4 | using JsonFx.Json; |
5 | |
6 | namespace 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.