foreach (Element element in arq.ElementList)
{
DataPoint dataPointElement = new DataPoint();
dataPointElement.SetValueXY(element.CollectionDescription, element.Score);
if (element.IsVerify)
{
dataPointElement.Color = System.Drawing.Color.Red;
}
chartElementScores.Series["ElementScores"].Points.Add(dataPointElement);
}
}
I'm working in asp.net and I want to convert the axis labes of each datapoint in linkbuttons... is it possible?
Thanks...
Sorry for my english