2

我正在使用 mschart 制作极坐标图,我需要在图表中间制作这个“洞”。我的意思是,我需要 Y 轴的“0”不在中心。我在stackoverflow的某个地方看到了这个情节。这正是我需要的,我该怎么做?

在此处输入图像描述

4

1 回答 1

2

为了创建一个看起来像提供的示例的雷达图

// disable grid a long X
chart1.ChartAreas[0].AxisX.MajorGrid.Enabled = false;
chart1.ChartAreas[0].AxisX.MajorTickMark.Enabled = false;

// set Y axis
chart1.ChartAreas[0].AxisY.Minimum = -20;  // creates the 'hole' by setting min Y
chart1.ChartAreas[0].AxisY.MajorGrid.IntervalOffset = 20; // so the major grid does not fill the 'hole'
chart1.ChartAreas[0].AxisY.MajorGrid.Interval = 5;
chart1.ChartAreas[0].AxisY.MajorGrid.LineDashStyle = ChartDashStyle.Dash;
于 2012-06-19T09:56:51.977 回答