【例子介绍】C#使用amchart制作漂亮的图表
C#使用amchart制作漂亮的图表,使用简单,方便,可实现数据的适时刷新,有饼图,柱状图,曲线图和XY坐标图!例子详细。
【相关图片】
【源码结构】
文件清单
└── amChart
├── amcharts
│ ├── amcolumn
│ │ ├── amcolumn_data.txt
│ │ ├── amcolumn_data.xml
│ │ ├── amcolumn_settings.xml
│ │ ├── amcolumn.swf
│ │ ├── export.aspx
│ │ ├── export.aspx.cs
│ │ ├── export.php
│ │ ├── fonts
│ │ │ ├── arial.fla
│ │ │ ├── arial.swf
│ │ │ ├── garamond.swf
│ │ │ ├── tahoma.swf
│ │ │ └── times new roman.swf
│ │ ├── patterns
│ │ │ ├── diagonal.fla
│ │ │ ├── diagonal.swf
│ │ │ ├── horizontal.fla
│ │ │ ├── horizontal.swf
│ │ │ ├── vertical.fla
│ │ │ └── vertical.swf
│ │ ├── plugins
│ │ │ └── value_indicator.swf
│ │ └── swfobject.js
│ ├── amline
│ │ ├── amline_data.txt
│ │ ├── amline_data.xml
│ │ ├── amline_settings.xml
│ │ ├── amline.swf
│ │ ├── data_labels
│ │ ├── export.aspx
│ │ ├── export.aspx.cs
│ │ ├── export.php
│ │ ├── fonts
│ │ │ ├── arial.swf
│ │ │ ├── garamond.swf
│ │ │ ├── georgia.swf
│ │ │ ├── tahoma.fla
│ │ │ ├── tahoma.swf
│ │ │ └── times new roman.swf
│ │ ├── plugins
│ │ │ └── value_indicator.swf
│ │ └── swfobject.js
│ ├── ampie
│ │ ├── ampie_data.txt
│ │ ├── ampie_data.xml
│ │ ├── ampie_settings.xml
│ │ ├── ampie.swf
│ │ ├── export.aspx
│ │ ├── export.aspx.cs
│ │ ├── export.php
│ │ ├── patterns
│ │ │ ├── diagonal.fla
│ │ │ ├── diagonal.swf
│ │ │ ├── horizontal.fla
│ │ │ ├── horizontal.swf
│ │ │ ├── vertical.fla
│ │ │ └── vertical.swf
│ │ └── swfobject.js
│ └── amxy
│ ├── amxy_data.txt
│ ├── amxy_data.xml
│ ├── amxy_settings.xml
│ ├── amxy.swf
│ ├── export.aspx
│ ├── export.aspx.cs
│ ├── export.php
│ ├── fonts
│ │ ├── arial.swf
│ │ ├── garamond.swf
│ │ ├── georgia.swf
│ │ ├── tahoma.fla
│ │ ├── tahoma.swf
│ │ └── times new roman.swf
│ ├── plugins
│ │ └── value_indicator.swf
│ └── swfobject.js
├── amPieExternalDataSource.aspx
├── amPieExternalDataSource.aspx.cs
├── amPieWithExternalData.aspx
├── amXY.aspx
├── amXY.aspx.cs
├── bin
│ └── am.Charts.dll
├── Column.aspx
├── Column.aspx.cs
├── Default.aspx
├── Default.aspx.cs
├── Line.aspx
├── Line.aspx.cs
├── PieChart.aspx
├── PieChart.aspx.cs
├── site.master
├── site.master.cs
├── StyleSheet.css
└── Web.config
15 directories, 83 files
评论