I'm trying to use ThresholdLineHelper Class in my chart project, but it seems like Microsoft haven't exposed Dundas.Extensions namespace into MSChart library. Does anyone know where I could find it or use some workaround?

link|improve this question
1  
I'm pretty sure that Microsoft has nothing to do with Dundas.Extensions. – Cody Gray Dec 27 '11 at 14:42
I think you wanted Dundas Chart V7.0 – V4Vendetta Dec 27 '11 at 15:02
1  
Why not? They bought Dundas Charting controls and released MSChart. Dundas.Extensions is a part of Dundas Charting control library. – void Dec 27 '11 at 15:03
which dot net framework are you using ? It could be part of 4.0 not sure – V4Vendetta Dec 27 '11 at 15:06
Nope, .net 4.0 System.Windows.Forms.DataVisualization.dll does not contain it. – void Dec 27 '11 at 15:13
feedback

1 Answer

Found out that simple threshold line could be created using:

  • System.Windows.Forms.DataVisualization.Charting.StripLine for a threshold line
  • Chart.DataManipulator.Statistics.Mean to extract mean value of the series

There's a sample for web, but also works for windows forms charts:

http://msdn.microsoft.com/en-us/library/system.web.ui.datavisualization.charting.stripline.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.