如何:在图表控件中突出显示x轴标签中的一个值?

时间:2011-03-11 14:20:12

标签: asp.net charts mschart

如何使用MS突出显示x轴中的值。图表控件?

X轴值,不在图表中。

谢谢!

1 个答案:

答案 0 :(得分:1)

使用图表Customize event(OnCustomize =“chart_Customize”):

protected void monthchart_Customize(object source, EventArgs e)
{
    foreach (CustomLabel cl in chart.ChartAreas[0].AxisX.CustomLabels)
    {
        if (cl.Text == "rightcolumnname")
        {
            cl.ForeColor = Color.Gold;
        }
    }

}