Hi, here's my code: void CreatePieChart() { DataSet ds = new DataSet(); // populate the dataset ... // the dataset contain 1 table with 2 column: "PageName" and "TotView" if ( ds.Tables[0].Rows.Count > 0 ) { Chart myPieChart = new Chart(); myPieChart.Aspect.Orthogonal = false; myPieChart.Aspect.Elev...