Refresh Method

Microsoft Graph Visual Basic

Refresh Method

       

Causes the specified chart to be redrawn immediately.

expression.Refresh

expression   Required. An expression that returns a Chart object.

Example

This example refreshes the first chart in the application. This example assumes a chart exists in the application.

Sub RefeshChart()

    Application.Charts(1).Refresh

End Sub