_ Partial Class chartbymembers Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Dim ChartArea1 As System.Windows.Forms.DataVisualization.Charting.ChartArea = New System.Windows.Forms.DataVisualization.Charting.ChartArea() Dim Legend1 As System.Windows.Forms.DataVisualization.Charting.Legend = New System.Windows.Forms.DataVisualization.Charting.Legend() Dim Series1 As System.Windows.Forms.DataVisualization.Charting.Series = New System.Windows.Forms.DataVisualization.Charting.Series() Me.Chart1 = New System.Windows.Forms.DataVisualization.Charting.Chart() Me.Button1 = New System.Windows.Forms.Button() Me.Label1 = New System.Windows.Forms.Label() CType(Me.Chart1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'Chart1 ' ChartArea1.Name = "ChartArea1" Me.Chart1.ChartAreas.Add(ChartArea1) Me.Chart1.Dock = System.Windows.Forms.DockStyle.Fill Legend1.Name = "Legend1" Me.Chart1.Legends.Add(Legend1) Me.Chart1.Location = New System.Drawing.Point(0, 0) Me.Chart1.Name = "Chart1" Me.Chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Bright Series1.ChartArea = "ChartArea1" Series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie Series1.Color = System.Drawing.Color.Green Series1.IsValueShownAsLabel = True Series1.IsXValueIndexed = True Series1.LabelFormat = "#%" Series1.Legend = "Legend1" Series1.Name = "Series1" Me.Chart1.Series.Add(Series1) Me.Chart1.Size = New System.Drawing.Size(917, 620) Me.Chart1.TabIndex = 0 Me.Chart1.Text = "Chart1" ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(787, 530) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(105, 35) Me.Button1.TabIndex = 1 Me.Button1.Text = "View" Me.Button1.UseVisualStyleBackColor = True ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(48, 31) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(39, 13) Me.Label1.TabIndex = 2 Me.Label1.Text = "Label1" ' 'chartbymembers ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(917, 620) Me.Controls.Add(Me.Button1) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.Chart1) Me.Name = "chartbymembers" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "Summary" CType(Me.Chart1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Chart1 As System.Windows.Forms.DataVisualization.Charting.Chart Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents Label1 As System.Windows.Forms.Label End Class