' Select the contents that need to be in the chart 在EXCEL表中選擇要在圖表(CHART)中顯示的數據 MyExcelChart.ActiveSheet.Range("b2:k5").Select
' Add the chart 加載圖表(CHART) MyExcelChart.Charts.Add ' Format the chart, set type of chart, shape of the bars, show title, get the data for the chart, show datatable, show legend 初始化圖表(CHART),設定圖表類型,棒圖的形狀,要顯示的標題,取得要作圖的數據,顯示數據表,顯示圖表 MyExcelChart.activechart.ChartType = 97 MyExcelChart.activechart.BarShape =3 MyExcelChart.activechart.HasTitle = True MyExcelChart.activechart.ChartTitle.Text = "Visitors log for each week shown in browsers percentage" MyExcelChart.activechart.SetSourceData MyExcelChart.Sheets("Sheet1").Range("A1:k5"),1 MyExcelChart.activechart.Location 1 MyExcelChart.activechart.HasDataTable = True MyExcelChart.activechart.DataTable.ShowLegendKey = True
' Save the the excelsheet to excelface 存入EXCEL表 MyExcelChart.SaveAs "c:/chart.xls" %>