- 积分
- 352
- 在线时间
- 183 小时
- 主题
- 22
- 注册时间
- 2016-9-10
- 帖子
- 142
- 最后登录
- 2022-9-21
- 帖子
- 142
- 软币
- 1717
- 在线时间
- 183 小时
- 注册时间
- 2016-9-10
|
本帖最后由 1002068421 于 2018-3-21 11:40 编辑
private DataTable CreateData(string text)
{
DataTable dt = new DataTable();
dt.Columns.Add(new DataColumn(text, typeof(string)));
dt.Columns.Add(new DataColumn("票数", typeof(decimal)));
dt.Columns.Add(new DataColumn("件数", typeof(decimal)));
dt.Columns.Add(new DataColumn("实重", typeof(decimal)));
dt.Columns.Add(new DataColumn("计价重", typeof(decimal)));
dt.Columns.Add(new DataColumn("基础运费", typeof(decimal)));
dt.Columns.Add(new DataColumn("总运费", typeof(decimal)));
return dt;
}
先创建一个dt数据,然后拖入控件,运行就会是折现图,老铁求点赞
|
-
运行后的样子
评分
-
查看全部评分
|