報表統計(九) 訪問資料庫 Pie圖 Ajax互動

來源:互聯網
上載者:User

View Code

 1 public partial class WebForm3 : System.Web.UI.Page 2     { 3         protected void Page_Load(object sender, EventArgs e) 4         { 5             CreateChart(); 6         } 7         public void CreateChart() 8         { 9             Chart1.Width = 400;10             Chart1.Height = 300;11             Chart1.BackColor = Color.Azure;12             Chart1.ChartAreas[0].BackColor = Color.Gray;13             Chart1.Series[0].ChartType = SeriesChartType.Pie;//餅圖14             Chart1.Series[0].PostBackValue = "#INDEX";//資料點索引15             Chart1.Series[0].LegendPostBackValue = "#INDEX";//資料點索引16             Chart1.Series[0].LegendToolTip = "#PERCENT";//資料點Y所佔百分比17             Chart1.Series[0].ToolTip = "#VALX:\t#VALY";18             int[] intArr = new int[] { 100, 200, 400, 80 };19             string[] strArr = new string[] { "A", "B", "C", "D" };20             Chart1.Series[0].Points.DataBindXY(strArr, intArr);21             Legend l = new Legend();22             Chart1.Legends.Add(l);23             if(!IsPostBack)24                 Chart1.Series[0].Points[0].CustomProperties = "Exploded=true";25         }26 27         protected void Chart1_Click(object sender, ImageMapEventArgs e)28         {29             int index = Convert.ToInt32(e.PostBackValue);30             if (index >= 0 && index < Chart1.Series[0].Points.Count)31             {32                 Chart1.Series[0].Points[index].CustomProperties += "Exploded=true";33             }34         }35 36     }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.