Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using JsonFx.Json;
|
---|
5 |
|
---|
6 |
|
---|
7 | namespace 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.