我怎样才能隐藏垂直线
How can I hide vertical line
我想去掉我在图片中显示的线条因为这是一个很荒谬的观点(不仅标出两个)
我正在尝试这段代码,但它没有任何作用
chart1.ChartAreas.First().AxisX.LineColor = Color.FromArgb(50, Color.Black);
chart1.ChartAreas.First().AxisX.LineWidth = 0;
chart1.ChartAreas.First().AxisX.InterlacedColor = Color.White;
我正在这样更改间隔,它有效但上面的代码不起作用
chart1.ChartAreas.First().AxisX.Interval = 1;
答案来自 How to delete grid lines from Chart in WindowsForm?
chart1.ChartAreas[0].AxisX.MajorGrid.LineWidth = 0;
我想去掉我在图片中显示的线条因为这是一个很荒谬的观点(不仅标出两个)
我正在尝试这段代码,但它没有任何作用
chart1.ChartAreas.First().AxisX.LineColor = Color.FromArgb(50, Color.Black);
chart1.ChartAreas.First().AxisX.LineWidth = 0;
chart1.ChartAreas.First().AxisX.InterlacedColor = Color.White;
我正在这样更改间隔,它有效但上面的代码不起作用
chart1.ChartAreas.First().AxisX.Interval = 1;
答案来自 How to delete grid lines from Chart in WindowsForm?
chart1.ChartAreas[0].AxisX.MajorGrid.LineWidth = 0;