我正在与mschart一起制作极坐标图,我需要在图表的中间做一个“洞”。我的意思是,我需要Y轴的“ 0”不在中心。我在stackoverflow的某处看到了这个图。正是我所需要的,我该怎么做?

最佳答案

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

// 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;

关于c# - 如何在极地Mschart上移动Y轴的原点?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11083881/

10-10 07:20