Private Sub cmdMDGraph_Click()
Dim oXL As Excel.Application ' Excel application
Dim oBook As Excel.Workbook ' Excel workbook
Dim oSheet As Excel.Worksheet ' Excel Worksheet
Dim oChart As Excel.Chart ' Excel Chart
Dim iRow As Integer ' Index variable for the current Row
Dim iCol As Integer ' Index variable for the current Row
Const cNumCols = 10 ' Number of points in each Series
Const cNumRows = 5 ' Number of Series
ReDim aTemp(1 To (cNumRows + 1), 1 To cNumCols)
'Start Excel and create a new workbook
Set oXL = CreateObject("Excel.application")
Set oBook = oXL.Workbooks.Add
Set oSheet = oBook.Worksheets.Item(1)
' Insert data into Cells for the two Series:
For iCol = 1 To cNumCols
aTemp(1, iCol) = "A" & iCol
aTemp(2, iCol) = 1
aTemp(3, iCol) = 1 + 2
aTemp(4, iCol) = iCol
If (iCol * 2) <= cNumCols Then
aTemp(5, iCol) = iCol * 2
Else
aTemp(5, iCol) = cNumCols
End If
Next iCol
oSheet.Range("A1").Resize(5, cNumCols).Value = aTemp
oSheet.Name = "MyChart_MD"
Set oChart = oXL.Charts.Add
oChart.ApplyCustomType ChartType:=xlBuiltIn, TypeName:="Line - Column"
oChart.SetSourceData Source:=oSheet.Range("A1").Resize(5, 4), PlotBy:=xlColumns
oChart.SeriesCollection(1).XValues = oSheet.Range("A1").Resize(1, cNumCols)
oChart.SeriesCollection(1).Values = oSheet.Range("A2").Resize(1, cNumCols)
oChart.SeriesCollection(1).Name = "Plan"
oChart.SeriesCollection(2).Values = oSheet.Range("A3").Resize(1, cNumCols)
oChart.SeriesCollection(2).Name = "Actual"
oChart.SeriesCollection(3).Values = oSheet.Range("A4").Resize(1, cNumCols)
oChart.SeriesCollection(3).Name = "Accumulated Plan"
oChart.SeriesCollection(4).Values = oSheet.Range("A5").Resize(1, cNumCols)
oChart.SeriesCollection(4).Name = "Accumulated Actual"
oChart.Location Where:=xlLocationAsNewSheet, Name:="chartMD"
With oChart
.HasTitle = True
.ChartTitle.Characters.Text = "Chart : MD"
.Axes(xlCategory, xlPrimary).HasTitle = False
.Axes(xlValue, xlPrimary).HasTitle = True
.Axes(xlValue, xlPrimary).AxisTitle.Characters.Text = "Accumulated"
'.Axes(xlCategory, xlSecondary).HasTitle = False
'.Axes(xlValue, xlSecondary).HasTitle = False
End With
oChart.HasLegend = False
oChart.HasDataTable = True
oChart.DataTable.ShowLegendKey = True
' Make Excel Visible:
oXL.Visible = True
oXL.UserControl = True
'clean-up
Set oXL = Nothing: Set oChart = Nothing: Set oSheet = Nothing: Set oBook = Nothing
End Sub