boxplot上的轴标签

时间:2013-12-24 22:27:02

标签: c# charts boxplot

我得到的是:

enter image description here

但我希望在每个箱图下都有系列名称。这有什么办法可以吗?

使用C#制作Boxplot图表非常令人沮丧。

1 个答案:

答案 0 :(得分:1)

请将此代码添加到your previous question的代码中。

Chart.chart_main.ChartAreas["BoxPlot"].AxisX.LabelStyle.Angle = -90;

for (int i = 0; i < xValue.Count; i++)
{
    Chart.chart_main.ChartAreas["BoxPlot"].AxisX.CustomLabels.Add((i + 1)* 2d, 0.0, xValue[i]);
}