namespace IntelligentControlForsx.MyControls
{
partial class HistoryLine
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
///
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
///
private void InitializeComponent()
{
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
this.SuspendLayout();
//
// chart1
//
this.chart1.BackColor = System.Drawing.Color.Transparent;
chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
chartArea1.AxisX2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
chartArea1.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
chartArea1.BackColor = System.Drawing.Color.Transparent;
chartArea1.Name = "ChartArea1";
chartArea1.Position.Auto = false;
chartArea1.Position.Height = 23F;
chartArea1.Position.Width = 94F;
chartArea1.Position.X = 3F;
chartArea1.Position.Y = 30F;
chartArea2.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
chartArea2.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
chartArea2.BackColor = System.Drawing.Color.Transparent;
chartArea2.Name = "ChartArea2";
chartArea2.Position.Auto = false;
chartArea2.Position.Height = 45.5F;
chartArea2.Position.Width = 94F;
chartArea2.Position.X = 3F;
chartArea2.Position.Y = 40F;
this.chart1.ChartAreas.Add(chartArea1);
this.chart1.ChartAreas.Add(chartArea2);
this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
legend1.BackColor = System.Drawing.Color.Transparent;
legend1.DockedToChartArea = "ChartArea1";
legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
legend1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
legend1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
legend1.HeaderSeparatorColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
legend1.IsTextAutoFit = false;
legend1.ItemColumnSeparatorColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
legend1.Name = "Legend1";
legend1.Position.Auto = false;
legend1.Position.Height = 16.31579F;
legend1.Position.Width = 53.79747F;
legend1.TitleAlignment = System.Drawing.StringAlignment.Near;
legend1.TitleForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
legend1.TitleSeparatorColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
this.chart1.Legends.Add(legend1);
this.chart1.Location = new System.Drawing.Point(0, 0);
this.chart1.Name = "chart1";
series1.BorderWidth = 3;
series1.ChartArea = "ChartArea1";
series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
series1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(103)))), ((int)(((byte)(149)))));
series1.LabelBorderWidth = 3;
series1.Legend = "Legend1";
series1.MarkerBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(103)))), ((int)(((byte)(149)))));
series1.MarkerBorderWidth = 3;
series1.MarkerColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(25)))), ((int)(((byte)(47)))));
series1.MarkerSize = 10;
series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
series1.Name = "风速";
series2.ChartArea = "ChartArea2";
series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Area;
series2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(103)))), ((int)(((byte)(149)))));
series2.Legend = "Legend1";
series2.Name = "功率";
this.chart1.Series.Add(series1);
this.chart1.Series.Add(series2);
this.chart1.Size = new System.Drawing.Size(317, 191);
this.chart1.TabIndex = 0;
this.chart1.Text = "chart1";
this.chart1.GetToolTipText += new System.EventHandler(this.chart1_GetToolTipText);
//
// HistoryLine
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Transparent;
this.Controls.Add(this.chart1);
this.Name = "HistoryLine";
this.Size = new System.Drawing.Size(317, 191);
((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
}
}