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

Last change on this file since 7849 was 7849, checked in by dennisw, 15 years ago
File size: 836 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using JsonFx.Json;
5namespace OpenFlashChart
6{
7 public class BarFilledValue:BarValue
8 {
9 private string outline_color;
10 public BarFilledValue():base()
11 {}
12 public BarFilledValue(double top, double bottom):base(top,bottom)
13 {
14
15 }
16
17
18 [JsonProperty("outline-colour")]
19 public string OutlineColor
20 {
21 get { return outline_color; }
22 set { outline_color = value; }
23 }
24 }
25 public class BarFilled : BarBase
26 {
27 public BarFilled()
28 {
29 this.ChartType = "bar_filled";
30 }
31 public void Add(BarFilledValue barFilledValue)
32 {
33 this.Values.Add(barFilledValue);
34 }
35 }
36}
Note: See TracBrowser for help on using the repository browser.