April 2006
Beginner
1114 pages
98h 16m
English
chart.DataTable
Returns the DataTable object for the chart. Make sure the HasDataTable property is True before using this object. For example, the following code adds a data table to a chart and makes the table’s font italic:
Sub GetDataTable( )
Dim chrt As Chart
Set chrt = Charts("New Chart")
chrt.HasDataTable = True
chrt.DataTable.Font.Italic = True
End SubRead now
Unlock full access