chart1.Series[0].XValueType = ChartValueType.String;
...
//按顺序添加了points数据(string类型,double类型)
下面我要根据条件添加标注annotation:
for(int i = 0; i < rowCount; i++)
{
annotation = new TextAnnotation();
annotation.AxisX = chart1.ChartAreas[0].AxisX;
annotation.AxisY = chart1.ChartAreas[0].AxisY;
annotation.AnchorX = listInput[i].name;//这是一个字符串,与X轴的显示数据对应
annotation.AnchorY = listInput[i].volumn;//double类型
annotation.Text = "B";//需要标注的文本
annotation.Font = new Font("Arial", 6, FontStyle.Bold);
annotation.ForeColor = Color.Red;
chart1.Annotations.Add(annotation);//添加标注
}
为什么总是提示AnchorX应为double类型?不是已经设置了为string类型吗?
请各位大侠指点,X轴为string类型时,如何检索定位,谢谢!