| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.Text;
|
|---|
| 4 | using JsonFx.Json;
|
|---|
| 5 | namespace OpenFlashChart
|
|---|
| 6 | {
|
|---|
| 7 | public class RadarAxis:XAxis
|
|---|
| 8 | {
|
|---|
| 9 | private XAxisLabels spokelabels;
|
|---|
| 10 | public RadarAxis(double max)
|
|---|
| 11 | {
|
|---|
| 12 | base.Max = max;
|
|---|
| 13 | }
|
|---|
| 14 | public RadarAxis()
|
|---|
| 15 | {
|
|---|
| 16 |
|
|---|
| 17 | }
|
|---|
| 18 | [JsonProperty("spoke-labels")]
|
|---|
| 19 | public XAxisLabels SpokeLabels
|
|---|
| 20 | {
|
|---|
| 21 | get { return spokelabels; }
|
|---|
| 22 | set { spokelabels = value; }
|
|---|
| 23 | }
|
|---|
| 24 | }
|
|---|
| 25 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.