找回密码
 立即注册

QQ登录

只需一步,快速开始

ttjie

高级会员

14

主题

55

帖子

1877

积分

高级会员

积分
1877

活字格认证

ttjie
高级会员   /  发表于:2014-1-3 09:38  /   查看:9273  /  回复:7
你好,

我需要做一个chart,在近端(0,0)显示一个Y轴,在远端(max, 0)显示一个Y轴,而且两个轴的单位不一样,可以实现吗?


谢谢

7 个回复

倒序浏览
roger.wang
社区贡献组   /  发表于:2014-1-3 10:05:00
沙发
回复 1楼ttjie的帖子

抱歉, 目前不支持两个Y轴。

demo在线演示地址:http://www.gcpowertools.com.cn/L ... rting/Overview.aspx
回复 使用道具 举报
ttjie
高级会员   /  发表于:2014-1-3 10:19:00
板凳
回复 2楼roger.wang的帖子

你好,这个例子是用FpSpread1.Sheets[0].AddChart(0, 0, typeof(FarPoint.Web.Chart.ClusteredBarSeries), 600, 600, 50, 50, FarPoint.Web.Chart.ChartViewType.View2D, true);这个方法自动生成的chart,我现在想用code一个一个的增加,因为我还要添加线装图,而且我的数据中间有空行,请问这个文档或例子可以让我参考一下吗?
回复 使用道具 举报
roger.wang
社区贡献组   /  发表于:2014-1-3 10:24:00
地板
回复 3楼ttjie的帖子

1 上面提到的在线demo,有源码下载,地址:  http://www.gcpowertools.com.cn/products/spread_aspnet_demo.htm

2 文档--《Spread for ASP.NET技术白皮书》
  http://www.gcpowertools.com.cn/support/document.htm
回复 使用道具 举报
ttjie
高级会员   /  发表于:2014-1-3 11:06:00
5#
回复 4楼roger.wang的帖子

你好,

我看到过一个例子,
    Axis ay2 = new Axis();
            ay2.AxisType = AxisType.Y;
            ay2.PlotAreaIndex = 0;
            ay2.Name = "ay2";
            ay2.Title = "ay2";
            ay2.Position = AxisPosition.Far;
这个是spread for WPF的, 在webform中有相应的属性吗?

谢谢
回复 使用道具 举报
roger.wang
社区贡献组   /  发表于:2014-1-3 12:17:00
6#
回复 5楼ttjie的帖子

在文档中,搜索一下这个类 IndexAxis, 默认X轴是这个类:


  1.                YPlotArea plotArea = new YPlotArea();
  2.                 plotArea.XAxis.Title = "X轴";
  3.                 plotArea.XAxis.LabelNumberFormat = "##年";
复制代码
回复 使用道具 举报
ttjie
高级会员   /  发表于:2014-1-3 12:50:00
7#
回复 6楼roger.wang的帖子

我是想说两个Y轴的问题,这个例子是有两个Y轴,但是WPF的,WEB form有没有类似的,

我看到过一个例子,
    Axis ay2 = new Axis();
            ay2.AxisType = AxisType.Y;
            ay2.PlotAreaIndex = 0;
            ay2.Name = "ay2";
            ay2.Title = "ay2";
            ay2.Position = AxisPosition.Far;
这个是spread for WPF的, 在webform中有相应的属性吗?
回复 使用道具 举报
roger.wang
社区贡献组   /  发表于:2014-1-3 16:32:00
8#
回复 7楼ttjie的帖子

WEB form 没有2个轴的。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部