Rev | Line | |
---|
[7849] | 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 BarGlassValue:BarValue
|
---|
| 10 | {
|
---|
| 11 | public BarGlassValue(double top):base(top)
|
---|
| 12 | {
|
---|
| 13 |
|
---|
| 14 | }
|
---|
| 15 | }
|
---|
| 16 | public class BarGlass : BarBase
|
---|
| 17 | {
|
---|
| 18 | public BarGlass()
|
---|
| 19 | {
|
---|
| 20 | this.ChartType = "bar_glass";
|
---|
| 21 | }
|
---|
| 22 | public void Add(BarGlassValue barGlassValue)
|
---|
| 23 | {
|
---|
| 24 | this.Values.Add(barGlassValue);
|
---|
| 25 | }
|
---|
| 26 | }
|
---|
| 27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.