1

我想绘制一个包含主 Y 轴和辅助 Y 轴以及公共 X 轴的 mschart。以下是可能的重复项,但我没有找到我正在寻找的解释:

图表多类型和辅助 Y 轴

MS 图表控制两个 Y 轴

我需要一些关于如何使用绘制这样的图表的帮助MSChart

4

2 回答 2

0
ChartArea chartarea = new ChartArea();

Series Memory = new Series();

RepeatsMemoryPlot.Series.Add(Memory);

//Add points to series Memory

Memory.Points.AddXY(a, b);

Series Time = new Series();

RepeatsMemoryPlot.Series.Add(Time);

Time.ChartArea = Memory.ChartArea;

Time.YAxisType = AxisType.Secondary;


//Add Points to time series
Time.Points.AddXY(a, b);
于 2012-04-09T08:58:45.500 回答
0

在 ChartArea 中,选择 Axis 然后选择 Secondary Y(values) axis 并将 Enabled 从 Auto 更改为 True

第二个轴将显示

于 2017-09-07T09:59:38.380 回答