The contextual menu faces component allows you to create a popup menu on a chart view faces component. The tag should be nested in a chartView tag.
The contextual menu faces component exposes a menu model that can be specified in two ways:
| Attributes |
| Name | Required | Request-time | Type | Description |
| binding | false | false | java.lang.String | The value binding expression linking this component to a property in a backing bean. If this attribute is set, the tag does not create the component itself but retrieves it from the bean property. This attribute must be a value binding. |
| factory | false | false | java.lang.String | The factory that will dynamically generate the popup menu depending on the graphic object clicked. |
| factoryClass | false | false | java.lang.String | The popup menu factory class name. This property is used if and only if the factory property is not set. |
| id | false | false | java.lang.String | The ID of this component. |
| itemDisabledStyleClass | false | false | java.lang.String | The CSS class name of a disabled menu item. |
| itemHighlightedStyleClass | false | false | java.lang.String | The CSS class name of a highlighted menu item. |
| itemStyleClass | false | false | java.lang.String | The CSS class name of a menu item. |
| pickingMode | false | false | java.lang.String | The picking mode. The picking mode defines how a point is retrieved. - If the mode is
ITEM_PICKING, the interactor searches the display point that contains the picking point. - If the mode is
NEAREST_POINT_PICKING, the interactor searches the display point closest to the picking point. The default value is NEAREST_POINT_PICKING. |