CAUTION: If you follow the steps in this example, you modify the sample database Northwind.mdb. You may want to back up the Northwind.mdb file and follow these steps on a copy of the database.
NOTE: To use the Visual Basic for Applications procedures in this article, you must have a reference to Microsoft Graph 9.0 Object Library.
Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
Creating a Sample Graph
To be able to use the procedures to add or to remove a title or to hide or
to show a legend, first create the following form:
- In the Database window, click Forms under Objects.
- Click the New button on the Database Window toolbar.
- Click the Chart Wizard, and then select the Category Sales for 1997 query. Click OK.
- Move both fields from the Available Fields list to the Fields For Chart list, and then click Next.
- Click Finish.
- On the View menu, click Design View.
- Right-click the graph, click Properties, and then click the All tab.
- Change the Name property to Graph1.
- Close the property sheet.
- Save the form with the name GraphTest, and then close it.
Adding or Removing a Graph's Title
The following example demonstrates how to use Automation to add or remove a
graph's title.
- Open the GraphTest form in Design view.
- On the View menu, click Properties, and then click the All tab.
- Change the DataEntry property of the form to Yes.
- Add the following command button to the form:
Command Button
--------------
Name: Title
Caption: Toggle Caption
- Set the OnClick property of the Toggle Caption command button to the following event procedure:
Sub Title_Click()
'-------------------------------------------------------
' Show or hide the title by using the Not Operator to
' reverse the state of the HasTitle property
'-------------------------------------------------------
Me!Graph1.Hastitle = Not Me!Graph1.Hastitle
' If the graph has a title, set the Caption to something
If Me!Graph1.Hastitle Then
Me!Graph1.ChartTitle.Text = "Sample Title"
End If
End Sub
- Add the following line to the Declarations section of the Sales By
Product form's form module if it's not already there:
- On the File menu, click Close and Return to Microsoft Access.
- On the View menu, click Form View, and then click the Toggle Caption button. Note that the graph's title either appears or disappears.
Hiding or Showing a Graph's Legend
The following example demonstrates how to hide or to show a legend on a
graph.
- Open the GraphTest form in Design view.
- Add a command button with the following properties to the form:
Command Button
----------------------
Name: Legend
Caption: Toggle Legend
- Set the OnClick property of the Toggle Legend command button to the following event procedure:
Sub Legend_Click ()
'-----------------------------------------------------------
' If the legend is not present, show it; otherwise, hide it.
' Use the Not Operator to reverse the state of the HasLegend
' property of the graph.
'-----------------------------------------------------------
Me!Graph1.Haslegend = Not Me!Graph1.Haslegend
End Sub
- Add the following line to the Declarations section of the Sales By
Product form's form module if it's not already there:
- On the File menu, click Close and Return to Microsoft Access.
- On the View menu, click Form View, and then click the Toggle Legend button. Note that the graph's legend either appears or disappears.
NOTE: Depending on the how the graph was created, you may have to click the Toggle Legend button twice the first time that you use it to see the described functionality.