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

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