I am working with MSChart in C#. I am given simulation data for the manufacturing time of three different products. I need to create a graph that LOOKS like an error bar graph that contains three points, but what each point really contains is the average time value, and the upper and lower bounds of the error bar at each point are the maximum and minimum time values of the simulation. The problem I have found is that with MSChart, the error range is static; it is the same for every point on the graph. I need an error bar graph with a different minimum and maximum for every point. I have an image of what the graph should look like, but of course, I am not allowed to post images.
I thought I could create a workaround, however inconvenient, by creating 6 series in the graph, 2 for each point, then add the maximum to one and the minimum to the other, and hide the respective lower and upper bound. Trying this, however, makes the graph a big red X. I am wondering if this capability is not possible with the .Net MSChart. Will I have to look at third party libraries for this?