Sub Main Dim GrapherApp As Object Set GrapherApp = CreateObject("Grapher.Application") GrapherApp.Visible = True Dim Docs As Object Set Docs = GrapherApp.Documents Dim Plot As Object Set Plot = Docs.Add(grfPlotDoc) Dim Shapes As Object Set Shapes = Plot.Shapes Set Graph = Shapes.AddLinePlotGraph(GrapherApp.Path+"\samples\sample3.dat") Set Rectangle = Shapes.AddRectangle( 2, 5, 7, 2) Rectangle.line.style = "Dash Dot Dot" Rectangle.line.width = 0.05 Rectangle.line.foreColor = grfColorRed 'Rectangle.line.foreColor =RGB(255,0,0) End Sub