Hi Im using the below code for data population from excel to Powerpoint in tables. Can someone tell me the referencing to chats instead of tables?

Set pres = pptapp.Presentations.Open(fx)

'abc = ThisWorkbook.Name
pptapp.ActiveWindow.View.GotoSlide Index:=8

Set tb = _
pptapp.ActivePresentation.Slides( _
pptapp.ActiveWindow.Selection.SlideRange.SlideIndex).Shapes("Content Placeholder 4")
tb.Table.Cell(2, 2).Shape.TextFrame.TextRange.Characters.Text = Workbooks(d).Sheets(b).Cells(10, 7).Value & "%"
tb.Table.Cell(3, 2).Shape.TextFrame.TextRange.Characters.Text = Workbooks(d).Sheets(b).Cells(20, 7).Value & "%"
tb.Table.Cell(4, 2).Shape.TextFrame.TextRange.Characters.Text = Workbooks(d).Sheets(b).Cells(33, 7).Value & "%"
tb.Table.Cell(5, 2).Shape.TextFrame.TextRange.Characters.Text = Workbooks(d).Sheets(b).Cells(43, 7).Value & "%"
P.S. this is not the whole code as it is huge so I didnt pasted all of it. This is a part where I have applied referencing to table I just want to know what to do in case of charts. Thanks.