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