There is a part of Delphi code:
chart:=sheet.chartobjects.add(270,205,397,220); chart.chart.charttype:=4; chart.Chart.SetSourceData(Sheet.Range['A3:B34']); which displays in Excel graph (chart):
I need another type of graphics, through the macro (excel-vba) it looks like this:
ActiveSheet.Shapes.AddChart2(332, xlLineMarkersStacked).Select Question: what code on Delphi should be executed instead of this line, so that it will bring me this type of graphics:

