using Imsl.Chart2D; public class Intro1 : FrameChart { public Intro1() { Chart chart = this.Chart; AxisXY axis = new AxisXY(chart); double[] y = new double[] {4, 2, 3, 9}; new Data(axis, y); } public static void Main(string[] argv) { System.Windows.Forms.Application.Run(new Intro1()); } }