An interactor that fires an event when a point is picked using the left mouse button.
| Attributes |
| Name | Required | Request-time | Type | Description |
| action | false | false | java.lang.String | MethodBinding representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns a String (the logical outcome) which is passed to the NavigationHandler for this application. |
| actionListener | false | false | java.lang.String | MethodBinding representing an action listener method that will be notified when this component is activated by the user. The expression must evaluate to a public method that takes an ActionEvent parameter, with a return type of void. |
| 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. |
| id | false | false | java.lang.String | The ID of this component. |
| immediate | false | false | java.lang.String | This flag indicates that if this component is activated by the user notifications should be immediately delivered to the interested listeners and actions (that is, during Apply Request Values phase) rather than waiting the Invoke Application phase. |
| marker | false | false | java.lang.String | The marker to set on the client side on the chart point or series when an event is fired by the interactor. Valid values are: CIRCLECROSS DIAMONDPLUS TRIANGLESQUARE
|
| onpick | false | false | java.lang.String | The JavaScript code executed on the client when a point is picked. |
| pickingMode | false | false | java.lang.String | Specifies the picking mode of this interactor. The picking mode defines how to retrieve the picked data point. Two modes are supported: NEARESTPOINT_PICKING: Retrieves the data point closest to the picking point. ITEM_PICKING: Retrieves the data point that contains the picking point. The default value is ITEM_PICKING. |
| style | false | false | java.lang.String | The inline SVG style applied on the client side to the chart point or series when an event is fired by the interactor. |