Listed below are the different types of graphs that have the bubble subtype.
The graph depicted in Example 13.13 is an X-Y Bubble graph (i.e. it uses X-Y Plot points).
To create an X-Y Bubble graph in PopChart XML, you should set the Type attribute of Graph to X-Y, and the SubType attribute to Bubble. The tag below shows how this is done.
<Graph Name='graph' Type='XY' SubType='Bubble'>
Be sure that each of your data items have a bubble value, as described in "Plot Data Class" in Chapter 12.
A Time Plot Bubble graph uses Time Plot points instead of X-Y points.
To create a Time Plot Bubble graph in PopChart XML, you should set the Type attribute of Graph to Time, and the SubType attribute to Bubble. The tag below shows how this is done.
<Graph Name='graph' Type='Time' SubType='Bubble'>
Be sure that each of your data items have a bubble value, as described in "Plot Data Class" in Chapter 12.