Generate MSBoxplot chart by assigning calculated whisker, quartile values manually

Rojalin.Mohanty

New member
Joined
Jan 11, 2011
Messages
1
Programming Experience
3-5
Hi,

My aim is to generate a boxplot chart in VS 2010 which should match with MINITAB boxplot.

I am able to generate the boxplot chart but it is not matching with MINITAB means none of the values(Whisker values, quartile and outliers vales) are matching with MINITAB boxplot chart.
i used MINITAB formula to get the all the above values and assigned like this..

Chart1.Series["BoxPlotSeries"].Points.AddY(LW);
Chart1.Series["BoxPlotSeries"].Points.AddY(Q1);
Chart1.Series["BoxPlotSeries"].Points.AddY(Q3);
Chart1.Series["BoxPlotSeries"].Points.AddY(UW);
Chart1.Series["BoxPlotSeries"].Points.AddY(UOUT);

. But it didn't work out. .

Any help really appreciate....


Thanks
Rojalin
 
Back
Top