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

Last change on this file since 7849 was 7849, checked in by dennisw, 15 years ago
File size: 502 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using JsonFx.Json;
5
6namespace OpenFlashChart
7{
8 public abstract class BarBase : Chart<double>
9 {
10 private Animation onshow = new Animation();
11 protected BarBase()
12 {
13 this.ChartType = "bar";
14 }
15 [JsonProperty("on-show")]
16 public Animation OnShowAnimation
17 {
18 get { return onshow; }
19 set { onshow = value; }
20 }
21 }
22}
Note: See TracBrowser for help on using the repository browser.