/// <summary> /// At run-time, this method is called during the node /// creation. Add custom UI element to the node view. /// </summary> /// <param name="model">The NodeModel representing the node's core logic.</param> /// <param name="nodeView">The NodeView representing the node in the graph.</param> public void CustomizeView(PieChartNodeModel model, NodeView nodeView) { pieChartControl = new PieChartControl(model); nodeView.inputGrid.Children.Add(pieChartControl); MenuItem exportImage = new MenuItem(); exportImage.Header = "Export Chart as Image"; exportImage.Click += ExportImage_Click; var contextMenu = (nodeView.Content as Grid).ContextMenu; contextMenu.Items.Add(exportImage); }
/// <summary> /// 初始化控件 /// </summary> private void InitialControl() { try { _pieChart = new PieChartControl(); _pieChart.LeftMargin = 2; _pieChart.RightMargin = 2; _pieChart.TopMargin = 2; _pieChart.BottomMargin = 2; _pieChart.ShadowStyle = ShadowStyle.GradualShadow; _pieChart.EdgeColorType = EdgeColorType.DarkerDarkerThanSurface; _pieChart.EdgeLineWidth = 1; _pieChart.FitChart = true; _pieChart.SliceRelativeHeight = 0.12f; _pieChart.InitialAngle = -30.0f; _pieChart.EdgeLineWidth = 1; _pieChart.Font = new Font("宋体", 10F); _pieChart.ForeColor = SystemColors.WindowText; ArrayList _colors = new ArrayList(); _colors.Add(Color.FromArgb(120, Color.LimeGreen)); _colors.Add(Color.FromArgb(120, Color.Red)); _pieChart.Colors = (Color[])_colors.ToArray(typeof(Color)); float[] _offset = new float[] { 0f, 0.15f }; _pieChart.SliceRelativeDisplacements = _offset; _pieChart.Dock = DockStyle.Fill; _pieChart.Margin = new Padding(0); this.Controls.Add(_pieChart); SetValue(0, 0); } catch (Exception) { throw; } }
private void SetPieStyle(PieChartControl pie) { pie.SetLeftMargin(10); pie.SetRightMargin(10); pie.SetTopMargin(10); pie.SetBottomMargin(10); pie.SetFitChart(false); pie.SetEdgeColorType(EdgeColorType.DarkerThanSurface); pie.SetSliceRelativeHeight(0.20f); pie.SetColors(DecentColors); pie.SetShadowStyle(ShadowStyle.GradualShadow); if (pie.Parent.Width > pie.Parent.Height) { pie.Height = pie.Parent.Height; pie.Width = pie.Parent.Height; } else { pie.Height = pie.Parent.Width; pie.Width = pie.Parent.Width; } }
protected override void OnLoad(EventArgs e) { base.OnLoad(e); m_panelDrawing = new PieChartControl(this); //m_panelDrawing.DoubleBuffered = false; m_panelDrawing.Dock = Pos.Fill; m_panelDrawing.ClientBackColor = Color.FromArgb(0, 128, 128, 128);// Color.Transparent;// WhiteSmoke; m_panelDrawing.TextColor = Color.Black; //m_panelDrawing.DrawBorder = true; //m_panelDrawing.BorderColor = Color.DodgerBlue; m_panelDrawing.Margin = new Margin(8, 8, 8, 8); m_panelDrawing.ToolTips = null; groupBox6 = new Alt.GUI.Temporary.Gwen.Control.GroupBox(m_ControlsPanel); groupBox6.Location = new PointI(8, 8); groupBox6.Size = new SizeI(320, 248); groupBox6.Text = "Pie slices"; int inGroupBoxOffset = -12; int numericUpDownWidth = 45; Alt.GUI.Temporary.Gwen.Control.Label label = new Alt.GUI.Temporary.Gwen.Control.Label(groupBox6); label.Location = new PointI(32, 20 + inGroupBoxOffset); label.Text = "Value"; label.TextAlign = ContentAlignment.MiddleLeft; label.AutoSizeToContents = true; label = new Alt.GUI.Temporary.Gwen.Control.Label(groupBox6); label.Location = new PointI(80, 20 + inGroupBoxOffset); label.Text = "Offset"; label.TextAlign = ContentAlignment.MiddleLeft; label.AutoSizeToContents = true; label = new Alt.GUI.Temporary.Gwen.Control.Label(groupBox6); label.Location = new PointI(128, 20 + inGroupBoxOffset); label.Text = "Color"; label.TextAlign = ContentAlignment.MiddleCenter; label.AutoSizeToContents = true; label = new Alt.GUI.Temporary.Gwen.Control.Label(groupBox6); label.Location = new PointI(168, 20 + inGroupBoxOffset); label.Text = "Text"; label.TextAlign = ContentAlignment.MiddleLeft; label.AutoSizeToContents = true; label = new Alt.GUI.Temporary.Gwen.Control.Label(groupBox6); label.Location = new PointI(248, 20 + inGroupBoxOffset); label.Text = "ToolTip"; label.TextAlign = ContentAlignment.MiddleLeft; label.AutoSizeToContents = true; int checkBoxOffset = 4; checkBox1 = new Alt.GUI.Temporary.Gwen.Control.CheckBox(groupBox6); checkBox1.IsChecked = true; checkBox1.Location = new PointI(8, 38 + inGroupBoxOffset + checkBoxOffset); checkBox1.CheckedChanged += new System.EventHandler(checkBox1_CheckedChanged); checkBox2 = new Alt.GUI.Temporary.Gwen.Control.CheckBox(groupBox6); checkBox2.IsChecked = true; checkBox2.Location = new PointI(8, 73 + inGroupBoxOffset + checkBoxOffset); checkBox2.CheckedChanged += new System.EventHandler(checkBox2_CheckedChanged); checkBox3 = new Alt.GUI.Temporary.Gwen.Control.CheckBox(groupBox6); checkBox3.IsChecked = true; checkBox3.Location = new PointI(8, 108 + inGroupBoxOffset + checkBoxOffset); checkBox3.CheckedChanged += new System.EventHandler(checkBox3_CheckedChanged); checkBox4 = new Alt.GUI.Temporary.Gwen.Control.CheckBox(groupBox6); checkBox4.IsChecked = true; checkBox4.Location = new PointI(8, 143 + inGroupBoxOffset + checkBoxOffset); checkBox4.CheckedChanged += new System.EventHandler(checkBox4_CheckedChanged); checkBox5 = new Alt.GUI.Temporary.Gwen.Control.CheckBox(groupBox6); checkBox5.IsChecked = true; checkBox5.Location = new PointI(8, 178 + inGroupBoxOffset + checkBoxOffset); checkBox5.CheckedChanged += new System.EventHandler(checkBox5_CheckedChanged); checkBox6 = new Alt.GUI.Temporary.Gwen.Control.CheckBox(groupBox6); checkBox6.IsChecked = true; checkBox6.Location = new PointI(8, 213 + inGroupBoxOffset + checkBoxOffset); checkBox6.CheckedChanged += new System.EventHandler(checkBox6_CheckedChanged); numericUpDownValue1 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownValue1.Width = numericUpDownWidth; numericUpDownValue1.Location = new PointI(32, 40 + inGroupBoxOffset); numericUpDownValue1.Value = 10; numericUpDownValue1.ValueChanged += new GwenEventHandler(numericUpDownValue_ValueChanged); numericUpDownValue2 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownValue2.Width = numericUpDownWidth; numericUpDownValue2.Location = new PointI(32, 75 + inGroupBoxOffset); numericUpDownValue2.Value = 15; numericUpDownValue2.ValueChanged += new GwenEventHandler(numericUpDownValue_ValueChanged); numericUpDownValue3 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownValue3.Width = numericUpDownWidth; numericUpDownValue3.Location = new PointI(32, 110 + inGroupBoxOffset); numericUpDownValue3.Value = 20; numericUpDownValue3.ValueChanged += new GwenEventHandler(numericUpDownValue_ValueChanged); numericUpDownValue4 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownValue4.Width = numericUpDownWidth; numericUpDownValue4.Location = new PointI(32, 145 + inGroupBoxOffset); numericUpDownValue4.Value = 60; numericUpDownValue4.ValueChanged += new GwenEventHandler(numericUpDownValue_ValueChanged); numericUpDownValue5 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownValue5.Width = numericUpDownWidth; numericUpDownValue5.Location = new PointI(32, 180 + inGroupBoxOffset); numericUpDownValue5.Value = 25; numericUpDownValue5.ValueChanged += new GwenEventHandler(numericUpDownValue_ValueChanged); numericUpDownValue6 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownValue6.Width = numericUpDownWidth; numericUpDownValue6.Location = new PointI(32, 215 + inGroupBoxOffset); numericUpDownValue6.Value = 25; numericUpDownValue6.ValueChanged += new GwenEventHandler(numericUpDownValue_ValueChanged); numericUpDownDisplacement1 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownDisplacement1.Width = numericUpDownWidth; numericUpDownDisplacement1.DecimalPlaces = 2; numericUpDownDisplacement1.Increment = 0.05f; numericUpDownDisplacement1.Location = new PointI(80, 40 + inGroupBoxOffset); numericUpDownDisplacement1.Maximum = 1; numericUpDownDisplacement1.Minimum = 0; numericUpDownDisplacement1.Value = 0.2f; numericUpDownDisplacement1.ValueChanged += new GwenEventHandler(numericUpDownDisplacement_ValueChanged); numericUpDownDisplacement2 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownDisplacement2.Width = numericUpDownWidth; numericUpDownDisplacement2.DecimalPlaces = 2; numericUpDownDisplacement2.Increment = 0.05f; numericUpDownDisplacement2.Location = new PointI(80, 75 + inGroupBoxOffset); numericUpDownDisplacement2.Maximum = 1; numericUpDownDisplacement2.Minimum = 0; numericUpDownDisplacement2.Value = 0.05f; numericUpDownDisplacement2.ValueChanged += new GwenEventHandler(numericUpDownDisplacement_ValueChanged); numericUpDownDisplacement3 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownDisplacement3.Width = numericUpDownWidth; numericUpDownDisplacement3.DecimalPlaces = 2; numericUpDownDisplacement3.Increment = 0.05f; numericUpDownDisplacement3.Location = new PointI(80, 110 + inGroupBoxOffset); numericUpDownDisplacement3.Maximum = 1; numericUpDownDisplacement3.Minimum = 0; numericUpDownDisplacement3.Value = 0.05f; numericUpDownDisplacement3.ValueChanged += new GwenEventHandler(numericUpDownDisplacement_ValueChanged); numericUpDownDisplacement4 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownDisplacement4.Width = numericUpDownWidth; numericUpDownDisplacement4.DecimalPlaces = 2; numericUpDownDisplacement4.Increment = 0.05f; numericUpDownDisplacement4.Location = new PointI(80, 145 + inGroupBoxOffset); numericUpDownDisplacement4.Maximum = 1; numericUpDownDisplacement4.Minimum = 0; numericUpDownDisplacement4.Value = 0.05f; numericUpDownDisplacement4.ValueChanged += new GwenEventHandler(numericUpDownDisplacement_ValueChanged); numericUpDownDisplacement5 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownDisplacement5.Width = numericUpDownWidth; numericUpDownDisplacement5.DecimalPlaces = 2; numericUpDownDisplacement5.Increment = 0.05f; numericUpDownDisplacement5.Location = new PointI(80, 180 + inGroupBoxOffset); numericUpDownDisplacement5.Maximum = 1; numericUpDownDisplacement5.Minimum = 0; numericUpDownDisplacement5.Value = 0.05f; numericUpDownDisplacement5.ValueChanged += new GwenEventHandler(numericUpDownDisplacement_ValueChanged); numericUpDownDisplacement6 = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox6); numericUpDownDisplacement6.Width = numericUpDownWidth; numericUpDownDisplacement6.DecimalPlaces = 2; numericUpDownDisplacement6.Increment = 0.05f; numericUpDownDisplacement6.Location = new PointI(80, 215 + inGroupBoxOffset); numericUpDownDisplacement6.Maximum = 1; numericUpDownDisplacement6.Minimum = 0; numericUpDownDisplacement6.Value = 0.05f; numericUpDownDisplacement6.ValueChanged += new GwenEventHandler(numericUpDownDisplacement_ValueChanged); buttonColor1 = new ColorButton(groupBox6); buttonColor1.Color = Color.Red; buttonColor1.Location = new PointI(136, 40 + inGroupBoxOffset); buttonColor1.Size = new SizeI(20, 20); buttonColor1.Click += new System.EventHandler(buttonColor1_Click); buttonColor2 = new ColorButton(groupBox6); buttonColor2.Color = Color.LimeGreen; buttonColor2.Location = new PointI(136, 75 + inGroupBoxOffset); buttonColor2.Size = new SizeI(20, 20); buttonColor2.Click += new System.EventHandler(buttonColor2_Click); buttonColor3 = new ColorButton(groupBox6); buttonColor3.Color = Color.Blue; buttonColor3.Location = new PointI(136, 110 + inGroupBoxOffset); buttonColor3.Size = new SizeI(20, 20); buttonColor3.Click += new System.EventHandler(buttonColor3_Click); buttonColor4 = new ColorButton(groupBox6); buttonColor4.Color = Color.Yellow; buttonColor4.Location = new PointI(136, 145 + inGroupBoxOffset); buttonColor4.Size = new SizeI(20, 20); buttonColor4.Click += new System.EventHandler(buttonColor4_Click); buttonColor5 = new ColorButton(groupBox6); buttonColor5.Color = Color.Firebrick; buttonColor5.Location = new PointI(136, 180 + inGroupBoxOffset); buttonColor5.Size = new SizeI(20, 20); buttonColor5.Click += new System.EventHandler(buttonColor5_Click); buttonColor6 = new ColorButton(groupBox6); buttonColor6.Color = Color.DeepSkyBlue; buttonColor6.Location = new PointI(136, 215 + inGroupBoxOffset); buttonColor6.Size = new SizeI(20, 20); buttonColor6.Click += new System.EventHandler(buttonColor6_Click); textBoxText1 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxText1.Location = new PointI(168, 40 + inGroupBoxOffset); textBoxText1.Size = new SizeI(72, 20); textBoxText1.Text = "red"; textBoxText1.TextChanged += new GwenEventHandler(textBoxText_TextChanged); textBoxText2 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxText2.Location = new PointI(168, 75 + inGroupBoxOffset); textBoxText2.Size = new SizeI(72, 20); textBoxText2.Text = "green"; textBoxText2.TextChanged += new GwenEventHandler(textBoxText_TextChanged); textBoxText3 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxText3.Location = new PointI(168, 110 + inGroupBoxOffset); textBoxText3.Size = new SizeI(72, 20); textBoxText3.Text = "blue"; textBoxText3.TextChanged += new GwenEventHandler(textBoxText_TextChanged); textBoxText4 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxText4.Location = new PointI(168, 145 + inGroupBoxOffset); textBoxText4.Size = new SizeI(72, 20); textBoxText4.Text = "yellow"; textBoxText4.TextChanged += new GwenEventHandler(textBoxText_TextChanged); textBoxText5 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxText5.Location = new PointI(168, 180 + inGroupBoxOffset); textBoxText5.Size = new SizeI(72, 20); textBoxText5.Text = "brown"; textBoxText5.TextChanged += new GwenEventHandler(textBoxText_TextChanged); textBoxText6 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxText6.Location = new PointI(168, 215 + inGroupBoxOffset); textBoxText6.Size = new SizeI(72, 20); textBoxText6.Text = "cyan"; textBoxText6.TextChanged += new GwenEventHandler(textBoxText_TextChanged); textBoxToolTip1 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxToolTip1.Location = new PointI(248, 40 + inGroupBoxOffset); textBoxToolTip1.Size = new SizeI(64, 20); textBoxToolTip1.Text = ""; textBoxToolTip1.TextChanged += new GwenEventHandler(textBoxToolTip_TextChanged); textBoxToolTip2 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxToolTip2.Location = new PointI(248, 75 + inGroupBoxOffset); textBoxToolTip2.Size = new SizeI(64, 20); textBoxToolTip2.Text = ""; textBoxToolTip2.TextChanged += new GwenEventHandler(textBoxToolTip_TextChanged); textBoxToolTip3 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxToolTip3.Location = new PointI(248, 110 + inGroupBoxOffset); textBoxToolTip3.Size = new SizeI(64, 20); textBoxToolTip3.Text = ""; textBoxToolTip3.TextChanged += new GwenEventHandler(textBoxToolTip_TextChanged); textBoxToolTip4 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxToolTip4.Location = new PointI(248, 145 + inGroupBoxOffset); textBoxToolTip4.Size = new SizeI(64, 20); textBoxToolTip4.Text = ""; textBoxToolTip4.TextChanged += new GwenEventHandler(textBoxToolTip_TextChanged); textBoxToolTip5 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxToolTip5.Location = new PointI(248, 180 + inGroupBoxOffset); textBoxToolTip5.Size = new SizeI(64, 20); textBoxToolTip5.Text = ""; textBoxToolTip5.TextChanged += new GwenEventHandler(textBoxToolTip_TextChanged); textBoxToolTip6 = new Alt.GUI.Temporary.Gwen.Control.TextBox(groupBox6); textBoxToolTip6.Location = new PointI(248, 215 + inGroupBoxOffset); textBoxToolTip6.Size = new SizeI(64, 20); textBoxToolTip6.Text = ""; textBoxToolTip6.TextChanged += new GwenEventHandler(textBoxToolTip_TextChanged); groupBox4 = new Alt.GUI.Temporary.Gwen.Control.GroupBox(m_ControlsPanel); groupBox4.Location = new PointI(336, 8); groupBox4.Size = new SizeI(248, 72); groupBox4.Text = "Margins"; inGroupBoxOffset = -15; label = new Alt.GUI.Temporary.Gwen.Control.Label(groupBox4); label.Location = new PointI(12, 22 + inGroupBoxOffset); label.Size = new SizeI(40, 16); label.Text = "Left:"; label.AutoSizeToContents = true; label = new Alt.GUI.Temporary.Gwen.Control.Label(groupBox4); label.Location = new PointI(12, 46 + inGroupBoxOffset); label.Size = new SizeI(40, 16); label.Text = "Right:"; label.AutoSizeToContents = true; label = new Alt.GUI.Temporary.Gwen.Control.Label(groupBox4); label.Location = new PointI(132, 22 + inGroupBoxOffset); label.Size = new SizeI(40, 16); label.Text = "Top:"; label.AutoSizeToContents = true; label = new Alt.GUI.Temporary.Gwen.Control.Label(groupBox4); label.Location = new PointI(132, 46 + inGroupBoxOffset); label.Size = new SizeI(44, 16); label.Text = "Bottom:"; label.AutoSizeToContents = true; numericUpDownLeftMargin = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox4); numericUpDownLeftMargin.Location = new PointI(64, 20 + inGroupBoxOffset); numericUpDownLeftMargin.Maximum = 20; numericUpDownLeftMargin.Size = new SizeI(48, 20); numericUpDownLeftMargin.Value = 10; numericUpDownLeftMargin.ValueChanged += new GwenEventHandler(numericUpDownLeftMargin_ValueChanged); numericUpDownRightMargin = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox4); numericUpDownRightMargin.Location = new PointI(64, 44 + inGroupBoxOffset); numericUpDownRightMargin.Maximum = 20; numericUpDownRightMargin.Size = new SizeI(48, 20); numericUpDownRightMargin.Value = 10; numericUpDownRightMargin.ValueChanged += new GwenEventHandler(numericUpDownRightMargin_ValueChanged); numericUpDownTopMargin = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox4); numericUpDownTopMargin.Location = new PointI(188, 20 + inGroupBoxOffset); numericUpDownTopMargin.Maximum = 20; numericUpDownTopMargin.Size = new SizeI(48, 20); numericUpDownTopMargin.Value = 10; numericUpDownTopMargin.ValueChanged += new GwenEventHandler(numericUpDownTopMargin_ValueChanged); numericUpDownBottomMargin = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(groupBox4); numericUpDownBottomMargin.Location = new PointI(188, 44 + inGroupBoxOffset); numericUpDownBottomMargin.Maximum = 20; numericUpDownBottomMargin.Size = new SizeI(48, 20); numericUpDownBottomMargin.Value = 10; numericUpDownBottomMargin.ValueChanged += new GwenEventHandler(numericUpDownBottomMargin_ValueChanged); checkBoxFitChart = new Alt.GUI.Temporary.Gwen.Control.LabeledCheckBox(m_ControlsPanel); checkBoxFitChart.Location = new PointI(336, 88); checkBoxFitChart.Text = "Fit chart to panel"; checkBoxFitChart.CheckedChanged += new System.EventHandler(checkBoxFitChart_CheckedChanged); groupBox1 = new Alt.GUI.Temporary.Gwen.Control.RadioButtonGroup(m_ControlsPanel, "Shadow style"); groupBox1.Location = new PointI(485, 95); //84); groupBox1.Size = new SizeI(104, 62); //82); radioButtonShadowStyleNone = groupBox1.AddOption("None"); radioButtonShadowStyleNone.Tag = ""; radioButtonShadowStyleNone.CheckedChanged += new System.EventHandler(radioButtonShadowStyle_Changed); radioButtonShadowStyleUniform = groupBox1.AddOption("Uniform"); radioButtonShadowStyleUniform.Select(); radioButtonShadowStyleUniform.Tag = ""; radioButtonShadowStyleUniform.CheckedChanged += new System.EventHandler(radioButtonShadowStyle_Changed); /*TEMP * radioButtonShadowStyleGradual = groupBox1.AddOption("Gradual"); * //radioButtonShadowStyleGradual.Select(); * radioButtonShadowStyleGradual.Tag = ""; * radioButtonShadowStyleGradual.CheckedChanged += new System.EventHandler(radioButtonShadowStyle_Changed);*/ numericUpDownPieHeight = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(m_ControlsPanel); numericUpDownPieHeight.DecimalPlaces = 2; numericUpDownPieHeight.Increment = 0.05f; numericUpDownPieHeight.Location = new PointI(408, 114); numericUpDownPieHeight.Maximum = 0.5f; numericUpDownPieHeight.Size = new SizeI(48, 20); numericUpDownPieHeight.Value = 0.25f; numericUpDownPieHeight.ValueChanged += new GwenEventHandler(numericUpDownPieHeight_ValueChanged); label = new Alt.GUI.Temporary.Gwen.Control.Label(m_ControlsPanel); label.Location = new PointI(336, 116); label.Size = new SizeI(72, 16); label.Text = "Pie Height:"; label.TextAlign = ContentAlignment.MiddleLeft; label.AutoSizeToContents = true; numericUpDownAngle = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(m_ControlsPanel); numericUpDownAngle.Increment = 10; numericUpDownAngle.Location = new PointI(408, 144); numericUpDownAngle.Maximum = 400; numericUpDownAngle.Minimum = -360; numericUpDownAngle.Size = new SizeI(48, 20); numericUpDownAngle.Value = -30; numericUpDownAngle.ValueChanged += new GwenEventHandler(numericUpDownAngle_ValueChanged); label = new Alt.GUI.Temporary.Gwen.Control.Label(m_ControlsPanel); label.Location = new PointI(336, 146); label.Size = new SizeI(72, 16); label.Text = "Initial angle:"; label.AutoSizeToContents = true; comboBoxEdgeType = new Alt.GUI.Temporary.Gwen.Control.ComboBox(m_ControlsPanel); comboBoxEdgeType.Location = new PointI(408, 178); comboBoxEdgeType.Size = new SizeI(176, 21); comboBoxEdgeType.ItemSelected += new GwenEventHandler(comboBoxEdgeType_SelectedIndexChanged); label = new Alt.GUI.Temporary.Gwen.Control.Label(m_ControlsPanel); label.Location = new PointI(336, 180); label.Size = new SizeI(72, 16); label.Text = "Edge color:"; label.AutoSizeToContents = true; label = new Alt.GUI.Temporary.Gwen.Control.Label(m_ControlsPanel); label.Location = new PointI(336, 208); label.Size = new SizeI(72, 16); label.Text = "Edge width:"; label.AutoSizeToContents = true; numericUpDownEdgeLineWidth = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(m_ControlsPanel); numericUpDownEdgeLineWidth.DecimalPlaces = 1; numericUpDownEdgeLineWidth.Increment = 0.5f; numericUpDownEdgeLineWidth.Location = new PointI(408, 206); numericUpDownEdgeLineWidth.Maximum = 5; numericUpDownEdgeLineWidth.Size = new SizeI(48, 20); numericUpDownEdgeLineWidth.Value = 3; numericUpDownEdgeLineWidth.ValueChanged += new GwenEventHandler(numericUpDownEdgeLineWidth_ValueChanged); label = new Alt.GUI.Temporary.Gwen.Control.Label(m_ControlsPanel); label.Location = new PointI(336, 236); label.Size = new SizeI(48, 16); label.Text = "Alpha:"; label.AutoSizeToContents = true; m_numericUpDownAlpha = new Alt.GUI.Temporary.Gwen.Control.NumericUpDown(m_ControlsPanel); m_numericUpDownAlpha.Increment = 5; m_numericUpDownAlpha.Location = new PointI(408, 234); m_numericUpDownAlpha.Maximum = 255; m_numericUpDownAlpha.Size = new SizeI(48, 20); m_numericUpDownAlpha.Value = 130; m_numericUpDownAlpha.ValueChanged += new GwenEventHandler(m_numericUpDownAlpha_ValueChanged); FillEdgeColorTypeListBox(); InitializeChart(); }