The charting that's included in .NET seems to have some pretty neat features (For free!), but I can't find a way to set the upper, lower and center markers on the error bars. I can set it to StandardError
, FixedError(n)
, StandardDeviation
or Percentage(n)
, but I can't find a way to specify that the Upper Error for this point is 100, the Lower Error is at 65 and the Center Point is at 98. The use-case is that I'm cheating and using error bars to display the Min, Max and Mean for a specific value as well as a Column series for your value.
seriesErrors("ErrorBarSeries") = "DataSeries"
seriesErrors("ErrorBarType") = "StandardError"
seriesErrors("ErrorBarStyle") = "Both"
seriesErrors("ErrorBarCenterMarkerStyle") = "Line"
The namespace for this abomination is System.Windows.Forms.DataVisualization.Charting
.
As you can probably tell by the use of parentheses to specify a collection, this is in VB.Net, although I'm sure C# is having the same limitation as it's the object that I'm confused with.
Thanks!