UseSelectOnRightClick: Boolean
The UseSelectOnRightClick property determines whether chart series can be selected by the right mouse click.
Use the setUseSelectOnRightClick method to set the property value and the getUseSelectOnRightClick method to get the property value.
If the property is set to True, series selection is available using the right mouse button (default). If the property is set to False, series can be selected only using the left mouse button.
The property is relevant if the EaxChartView.EditMode property is set to None.
Executing the example requires that the HTML page contains the ChartBox component named chartBox (see Example of EaxPropertyBar and ChartBox Components Collocation).
chartBox.setEditMode(PP.Exp.Ui.ChartEditMode.None); chartBox.setUseSelectOnRightClick(false);
After executing the example, chart series selection using the right mouse button is disabled.
See also: