jsx3.chart.SeriesAPI


DestroyFires after this series is removed from the DOM.
ExecuteFires after the user double-clicks on this series.
MenuFires after the user right-clicks this series and before the bound context menu displays.
SelectFires after the user selects this series.
SpyglassFires after the user hovers the mouse over this series and before the spyglass displays.

Executejsxexecute

Fires after the user double-clicks on this series.

Context Variables

this {jsx3.chart.Series} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
intINDEX {int} - the index of the selected CDF record.
strRECORDID {String} - the CDF jsxid of the selected record.

Selectjsxselect

Fires after the user selects this series.

Context Variables

this {jsx3.chart.Series} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
intINDEX {int} - the index of the selected CDF record.
strRECORDID {String} - the CDF jsxid of the selected record.

Spyglassjsxspy

Fires after the user hovers the mouse over this series and before the spyglass displays. The event script must evaluate to the HTML content to display in the spyglass. Canceling this event prevents the spyglass from displaying.
Cancelable: Evaluate to false to cancel event.

Context Variables

this {jsx3.chart.Series} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
intINDEX {int} - the index of the selected CDF record.
strRECORDID {String} - the CDF jsxid of the selected record.

Menujsxmenu

Fires after the user right-clicks this series and before the bound context menu displays. Canceling this event prevents the menu from displaying.
Cancelable: Evaluate to false to cancel event.

Context Variables

this {jsx3.chart.Series} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
objMENU {jsx3.gui.Menu} - the menu to display.
intINDEX {int} - the index of the selected CDF record.
strRECORDID {String} - the CDF jsxid of the selected record.

Return Fields

objMENU {jsx3.gui.Menu} - use this field to override the default menu with an instance of jsx3.gui.Menu.

Destroyjsxdestroy

Fires after this series is removed from the DOM.

Context Variables

this {jsx3.chart.Series} - the object that publishes this event.
objPARENT {jsx3.app.Model} - the parent of this series before it is removed from the DOM.