Is there a way to get the value at x, y in the graph, where the symbol is? We can add as a parameter, "SymbolType.Star" etc, then ZedGraph will add the symbols at certain points x, y. I have have som values, and I want to make a bar chart, but right now, a curve is drawn. The bar chart should be made from the same values that the curve is created, but it should not draw the (somewhat) straight line through i, j, but rather a vertical line. I'm not sure how to go about with this. Below is the code I have, and I want to retain the value at xVal, yVal
for (int i = 0; i < dataSet.Tables[objectName].Rows.Count; i++)
{
xVal[i] = Convert.ToInt32(dataSet.Tables[objectName].Rows[i][resForXAxis]);
yVal[i] = Convert.ToInt32(dataSet.Tables[objectName].Rows[i][resForYAxis]);
}