我得到的是:
但我希望在每个箱图下都有系列名称。这有什么办法可以吗?
使用C#制作Boxplot图表非常令人沮丧。
答案 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]);
}