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

Last change on this file since 7937 was 7849, checked in by dennisw, 15 years ago
File size: 862 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using JsonFx.Json;
5
6
7namespace OpenFlashChart
8{
9 public class XAxis:Axis
10 {
11 private string tick_height;
12 private XAxisLabels labels;
13
14 [JsonProperty("tick-height")]
15 public string TickHeight
16 {
17 get { return tick_height; }
18 set { tick_height = value; }
19 }
20
21 [JsonProperty("labels")]
22 public XAxisLabels Labels
23 {
24 get
25 {
26 if (this.labels == null)
27 this.labels = new XAxisLabels();
28 return this.labels;
29 }
30 set { this.labels = value; }
31 }
32 public void SetLabels(IList<string> labelsvalue)
33 {
34 Labels.SetLabels(labelsvalue);
35 }
36 }
37}
Note: See TracBrowser for help on using the repository browser.