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

Last change on this file since 7849 was 7849, checked in by dennisw, 15 years ago
File size: 550 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using JsonFx.Json;
5namespace 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.