在MS Chart中删除x轴的端点

时间:2013-01-15 13:29:30

标签: c# graph mschart

我有一张图表(见附图),我想删除端点" 2060"和" 2020"。我希望间距保持不变。但是我想隐藏标签2060和2020.有没有办法可以用MS Chart以编程方式实现这个目标?

remove end labels

创建轴的代码:

            var area = new ChartArea();

        chart.ChartAreas.Add(area);
        chart.ChartAreas[0].Position.X = 5;
        chart.ChartAreas[0].Position.Y = 10;
        chart.ChartAreas[0].Position.Height = 80;
        chart.ChartAreas[0].Position.Width = 80;
        chart.ChartAreas[0].AxisX.LabelStyle.Font = font10Point;
        chart.ChartAreas[0].AxisY.LabelStyle.Font = font10Point;
        chart.ChartAreas[0].AxisX.Title = "Target Date Fund";
        chart.ChartAreas[0].AxisY.Title = "% Up Capture";

        chart.ChartAreas[0].AxisX.TitleFont = font10Point;
        chart.ChartAreas[0].AxisX.MajorGrid.LineColor = Color.Transparent;
        chart.ChartAreas[0].AxisY.MajorGrid.LineColor = Color.Black;
        chart.ChartAreas[0].BorderColor = Color.Black;
        chart.ChartAreas[0].Position = new ElementPosition(0, 10, 75, 85);

        chart.Series[0].YAxisType = AxisType.Secondary;
        chart.ChartAreas[0].AxisY.LabelStyle.Enabled = false;
        chart.ChartAreas[0].AxisX.Crossing = 2060; 
        chart.ChartAreas[0].AxisX.IsReversed = true;
        area.AxisX.Minimum = 2020; 
        area.AxisX.Maximum = 2060; 
        area.AxisX.Interval = 10;
        area.AxisX.LineWidth = int.Parse("5");
        area.AxisX.MajorTickMark.LineWidth = int.Parse("5");
        area.AxisY.MajorTickMark.LineWidth = int.Parse("5");

        area.AxisY.Minimum = area.AxisY2.Minimum = 0;
        area.AxisY.Maximum = area.AxisY2.Maximum = 120;
        area.AxisY.Interval = area.AxisY2.Interval = 20;
        area.AxisY.LineWidth = int.Parse("5");

1 个答案:

答案 0 :(得分:5)

您可以使用LabelStyle.IsEndLabelVisible属性:

area.AxisX.LabelStyle.IsEndLabelVisible = false;