2014-01-21 57 views
0
for (int t = 0; t < ARF.Rows.Count; t += 1) 
{ 
    Chart1.Series[t].ChartType = SeriesChartType.Column; 
    Chart1.Series[t].BorderWidth = 2; 

    Chart1.Series[t].ToolTip = "(#VALX,#VALY)"; 
    Chart1.ChartAreas["ChartArea1" + t.ToString()].AxisX.Title = "Learning Domains"; 
    Chart1.ChartAreas["ChartArea1" + t.ToString()].AxisY.Title = "Covered"; 


    Chart1.Legends.Add("Legend1" + t.ToString()); 
    Chart1.Legends["Legend1" + t.ToString()].Enabled = false; 
    // Chart1.Legends["Legend1" + t.ToString()].Docking = Docking.Bottom; 
    Chart1.Legends["Legend1" + t.ToString()].Alignment = System.Drawing.StringAlignment.Center; 
    Chart1.Legends["Legend1" + t.ToString()].DockedToChartArea = "ChartArea1" + t.ToString(); 
    // Chart1.Legends["Legend1" + t.ToString()].IsDockedInsideChartArea = false; 
    Random random = new Random(); 
    foreach (var item in Graph.Series[0].Points) 
    { 
     System.Drawing.Color c = System.Drawing.Color.FromArgb(random.Next(0, 255), random.Next(0, 255), random.Next(0, 255)); 
     item.Color = c; 

    } 

    Chart1.Series[t]["PointWidth"] = "0.2"; 
    Chart1.Series[t]["BarLabelStyle"] = "Center"; 
    Chart1.Series[t]["PixelPointDepth"] = "99"; 
    Chart1.Series[t]["DrawingStyle"] = "Cylinder"; 

} 

for (int i = 0; i < 5; i++) 
{ 
    GridView gv = new GridView(); 
    gv.DataSource = ds; 
    ph.Controls.Add(gv); 
} 

這是創建5個圖表的代碼,我需要5個圖表和5個表格視圖數據在一起。你能幫我做...我已經嘗試過,但圖表即將到來,網格不可見。使用表格創建圖表

+0

給我們一個戰鬥的機會是什麼Chart1? – Liath

+0

chart1是圖表.. – user3218871

+0

我的意思是.NET類型 – Liath

回答

0

如果您使用的Web應用程序,您可以使用谷歌圖表: 您可以參考以下鏈接:

https://developers.google.com/chart/interactive/docs/gallery/controls