为什么我在MSChart的图表区看不到滚动条
本文关键字:表区 看不到 滚动条 MSChart 为什么 | 更新日期: 2023-09-27 18:31:14
我做了一个c#
邦恩
图表程序。而且,我使用MSChart。
我在图表区集合上设置滚动条信息。
执行我的程序时,滚动条不可见...我的图表区集合有什么问题。
而且,我尝试像这样编码设置滚动条。
chart1.ChartAreas[0].AxisX.ScrollBar.IsPositionedInside = true;
chart1.ChartAreas[0].AxisX.ScrollBar.Size = 10;
chart1.ChartAreas[0].AxisX.ScrollBar.Enabled = true;
chart1.ChartAreas[0].AxisX.ScrollBar.IsPositionedInside = true;
chart1.ChartAreas[0].AxisX.ScrollBar.Size = 10;
chart1.ChartAreas[0].AxisX.ScrollBar.Enabled = true;
chart1.ChartAreas[0].AxisX.ScrollBar.ButtonStyle = ScrollBarButtonStyles.SmallScroll;
chart1.ChartAreas[0].AxisX.ScrollBar.BackColor = Color.LightGray;
chart1.ChartAreas[0].AxisX.ScrollBar.ButtonColor = Color.Gray;
chart1.ChartAreas[0].AxisX.ScrollBar.LineColor = Color.Black;
chart1.ChartAreas[0].AxisX.Minimum = 0;
chart1.ChartAreas[0].AxisX.Maximum = 10;
chart1.ChartAreas[0].AxisY.Minimum = 0;
chart1.ChartAreas[0].AxisY.Maximum = 100;
chart1.ChartAreas[0].AxisX.Interval = 1;
chart1.Series["Series1"].Points.AddXY(0, 0);
chart1.Series["Series2"].Points.AddXY(0, 0);
chart1.Series["Series3"].Points.AddXY(0, 0);
有什么错吗?
您在 AxisX 滚动条上设置了两次某些属性(如"大小"和"已启用"),但未针对 AxisY 设置这些属性。
我怀疑你做了一个剪切和过去,忘记将一些 X 更改为 Y....