using Imsl.Chart2D; using Imsl.Chart2D.QC; public class SampleXmR : FrameChart { static double[] viscosity = { 33.75, 33.05, 34.00, 33.81, 33.46, 34.02, 33.68, 33.27, 33.49, 33.20, 33.62, 33.00, 33.54, 33.12, 33.84 }; public SampleXmR() { Chart chart = this.Chart; AxisXY axis = new AxisXY(chart); XmR xmr = new XmR(axis, viscosity); } public static void Main(string[] argv) { System.Windows.Forms.Application.Run(new SampleXmR()); } }