Код: Выделить всё
Graph Pane = zedGraph.GraphPane;
list = new PointPairList ();
for (int i = 0; i < 256; i++)
{
list.Add(i, array_with_y_values[i]);
}
Pane.AddBar("", list, Color.Red);
Подробнее здесь: https://stackoverflow.com/questions/446 ... -histogram