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