Click here to Skip to main content
15,885,720 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi. All


How Can i Create Chart

My DatagridView Value(Paper1,Paper2,Paper3,Paper4)Related need chart

RegNo	Name	Paper1	Paper2	Paper3	Paper4
A600            BBBB	25	25	25	25
A700      	DDDD	55	55	55	55



I Need for Chat Each Regno Related Chat..



I use Code for Chat..
SQL
For xx As Integer = 0 To DGV1.Rows.Count - 1

           Chart1.Series("Analysis").Points.AddXY(DGV1.Columns(5).HeaderText, DGV1.Rows(xx).Cells(5).Value)
           Chart1.Series("Analysis").Points.AddXY(DGV1.Columns(6).HeaderText, DGV1.Rows(xx).Cells(6).Value)
           Chart1.Series("Analysis").ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie

       Next



Please TEll me how to make separate chat
Posted
Comments
Maciej Los 21-Mar-13 15:35pm    
What you mean "how to make separate chart"?
Navas Khanj 21-Mar-13 17:42pm    
i have two data on DGV. that data want to CHART (For Example A600 Value One Chare and A700 need another Chart)

1 solution

VB
Chart1.Series.Clear()
                        Chart1.Series.Add("Series1")
                        Chart1.Series.Add("Series2")
                        Chart1.Series("Series1").Points.Clear()
                        Chart1.Series("Series1").Points.AddXY(DGV1.Columns(5).HeaderText & "--" & DGV1.Rows(0).Cells(5).Value, DGV1.Rows(0).Cells(5).Value)
                        Chart1.Series("Series1").Points.AddXY(DGV1.Columns(6).HeaderText & "--" & DGV1.Rows(0).Cells(6).Value, DGV1.Rows(0).Cells(6).Value)

VB
Chart1.Series("Series2").ChartArea = "ChartArea2"
                            Chart1.Series("Series2").Points.Clear()
                            Chart1.Series("Series2").Points.AddXY(DGV1.Columns(5).HeaderText & "--" & DGV1.Rows(xx).Cells(5).Value, DGV1.Rows(xx).Cells(5).Value)
                            Chart1.Series("Series2").Points.AddXY(DGV1.Columns(6).HeaderText & "--" & DGV1.Rows(xx).Cells(6).Value, DGV1.Rows(xx).Cells(6).Value)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900