How to Customize Zoom Levels for a Theme

27-12 Web User Interface Developers Guide for Oracle Application Development Framework Figure 27–6 Edit Bar Graph Map Theme Binding Dialog

4. Repeat Step 3 for every bar in the graph.

27.4.7 What Happens When You Customize the Bars in a Map Bar Graph Theme

When you use the Edit Bar Graph Map Theme Binding dialog to customize the bars in a map bar graph theme, the sequence of the bars reflect the sequence of the entries in the Series Attribute column in the dialog. Example 27–3 shows sample XML code generated when you customize the bars in a map bar graph. Example 27–3 Code for Customizing the Bars in a Map Bar Graph dvt:map . . . dvt:mapBarGraphTheme . . . dvt:mapBarSeriesSet dvt:mapBarSeriesItem color=333399 id=bar1 dvt:mapBarSeriesItem color=0000ff id=bar2 dvt:mapBarSeriesSet dvt:mapBarGraphTheme dvt:map

27.4.8 How to Customize the Slices in a Pie Graph Theme

When you create a map pie graph theme, default colors are assigned to the slices in the graph. You can customize the colors of the slices by using the mapPieSlicesSet tag and the mapPieSliceItem tag. Use one mapPieSliceSet tag to wrap all the mapPieSliceItem tags for a pie graph theme, and insert a mapPieSliceItem tag for each slice in the graph. To customize the color of the slices in a map pie graph theme: 1. In the Structure window, right-click the dvt:mapPieGraphTheme tag and choose Insert inside dvt:mapPieGraphTheme Pie Slice Set. Using ADF Geographic Map Components 27-13 There are no attributes to set for this tag. It is used to wrap the individual pie graph item tags.

2. In the Structure window, right-click the dvt:mapPieSliceSet node and choose

Insert inside dvt:mapPieSliceSet Pie Slice Item. 3. In the Property Inspector, enter any unique ID and color you want to use for the first slice that appears in the graph. To find the sequence of the slices in the graph, examine the Edit Pie Graph Map Theme Binding dialog. The sequence of the entries in the Pie Slices Attribute column of that dialog determines the sequence that slices appear in the graph. For example, in Figure 27–7 , the first slice in the graph represents Sales, the second slice represents Profit, and the third slice represents Cost. Figure 27–7 Edit Pie Graph Map Theme Binding Dialog 4. Repeat Step 3 for every slice in the graph.

27.4.9 What Happens When You Customize the Slices in a Map Pie Graph Theme

When you use the Edit Pie Graph Map Theme Binding dialog to customize the slices in a map pie graph theme, the sequence of the slices reflect the sequence of the entries in the Pie Slices Attribute column of the dialog. Example 27–4 shows sample XML code generated in a JSF page when you customize the slices in a map pie graph. Example 27–4 Code for Customizing the Slices in a Map Pie Graph dvt:map . . . dvt:mapPieGraphTheme . . . dvt:mapPieSliceSet dvt:mapPieSliceItem color=ffffff id=slice1 dvt:mapPieSliceItem color=ffff00 id=slice2 dvt:mapPieSliceItem color=ff0000 id=slice3 dvt:mapPieSliceSet dvt:mapPieGraphTheme