Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
chartController1.Chart = tChart1;
tChart1.Aspect.View3D = false;
tChart1.Legend.Visible = false;
tChart1.Dock = DockStyle.Fill;
Bubble bub1 = new Bubble(tChart1.Chart);
bub1.XValues.Order = ValueListOrder.None;
bub1.Add(1, 1, 0.5, Color.SkyBlue);
bub1.Add(1, 0.7, 0.1, Color.Red);
bub1.Add(1.07, 0.7, 0.1, Color.Red);
bub1.Add(0.93, 0.7, 0.1, Color.Red);
bub1.Add(0.89, 1, 0.1, Color.Red);
bub1.Add(1.04, 1, 0.1, Color.Red);
bub1.Add(1.11, 1, 0.1, Color.Red);
bub1.Add(1, 1.27, 0.1, Color.Red);
bub1.Add(1.07, 1.27, 0.1, Color.Red);
bub1.Add(0.93, 1.27, 0.1, Color.Red);
bub1.Add(1, 2, 0.5, Color.SkyBlue);
bub1.Add(1.07, 1.7, 0.1, Color.Red);
bub1.Add(0.93, 1.7, 0.1, Color.Red);
bub1.Add(0.89, 2, 0.1, Color.Red);
bub1.Add(0.96, 2, 0.1, Color.Red);
bub1.Add(1.04, 2, 0.1, Color.Red);
bub1.Add(1.11, 2, 0.1, Color.Red);
bub1.Add(1, 2.27, 0.1, Color.Red);
bub1.Add(1.07, 2.27, 0.1, Color.Red);
bub1.Add(0.93, 2.27, 0.1, Color.Red);
tChart1.Axes.Left.SetMinMax(0.5, 2.5);
tChart1.Axes.Bottom.SetMinMax(0.5, 1.5);
}