MSChart control .net 3.5 sp1 - 倒置 Y 轴问题
我有一个带有倒置 y 轴的图表控件。它总是有一天从上面吃掉。
cht1.ChartAreas["TimeOfNight"].AxisY.Minimum = startTime.AddDays(-1).ToOADate();
cht1.ChartAreas["TimeOfNight"].AxisY.Maximum = endTime.AddDays(1).ToOADate();
但图还是吃一天!我创建了一个示例项目供大家查看。行为是相当随机的:(。
显示图表和 y 轴最小值/最大值的图像。参见图像:
源代码和可执行文件:Rapidshare 上提供
I have a chart control with inverted y axis. It always eats up one day from top.
cht1.ChartAreas["TimeOfNight"].AxisY.Minimum = startTime.AddDays(-1).ToOADate();
cht1.ChartAreas["TimeOfNight"].AxisY.Maximum = endTime.AddDays(1).ToOADate();
But chart still eats a day! I created a sample project so that you guys can have a look. Behaviour is quite random :(.
Image displaying chart and y axis min/max . See image:
source code and executable: Available on Rapidshare
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该行为既不是随机的,也不是意外的。
将此行:更改
为
并看看它是什么样子。
The behavior is neither random nor unexpected.
Change this line:
to
And see what it looks like.