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 , 15 years ago | |
---|---|
File size: 502 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Text; |
4 | using JsonFx.Json; |
5 | |
6 | namespace 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.