using Imsl.Chart2D; public class SamplePanel : System.Windows.Forms.Form { private PanelChart panelChart; public SamplePanel() { panelChart = new PanelChart(); panelChart.Size = this.ClientSize; this.Controls.Add(panelChart); Chart chart = panelChart.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 SamplePanel()); } }