将一个 ChartArea 的 x 轴与另一个 ChartArea 的 y 轴对齐?
我正在使用 System.Windows.Forms.DataVisualization.Charting(C#、VS 2008)。
我有两个 ChartArea
,一个包含 SeriesChartType.Line
,另一个包含 SeriesChartType.RangeBar
。这两个图表分别绘制了我想要的内容。两者的水平轴都是时间,我想将它们对齐,以便可以将它们一起缩放等。
Line
图表的水平轴是 x 轴,但RangeBar
图表是 y 轴。当我将一个图表的 AlignWithChartArea
设置为另一个图表的名称时,链接的轴会交叉(折线图的水平 (x) 轴与垂直 (x ) RangeBar 图表的轴)。
有没有一种简单的方法可以让两个水平轴链接起来,或者我要求太多了?
一如既往地感谢。
I'm working with System.Windows.Forms.DataVisualization.Charting (C#, VS 2008).
I have two ChartArea
s, one containing a SeriesChartType.Line
and the other containing a SeriesChartType.RangeBar
. Separatly the two charts plot what I want. The horizontal axis in both is time, and I'd like to align them so that I can zoom them together, etc.
The horizontal axis of the Line
chart is the x axis, but the horizontal axis of the RangeBar
chart is the y axis. When I set AlignWithChartArea
of one chart with the name of the other, the linked axes are crossed (the horizontal (x) axis of the Line chart links with the vertical (x) axis of the RangeBar chart).
Is there an easy way to get the two horizontal axes to link, or am I asking too much?
Thanks as always.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您要找的吗? http://betterdashboards.wordpress.com/2009/02/ 11/对齐多个图表区域/
Is this what you are looking for? http://betterdashboards.wordpress.com/2009/02/11/align-multiple-chart-areas/