Events
ready static event
This event is fired when the FusionCharts library is ready to be used. By the time this event is raised, the browser's DOM
is ready to be interacted with, which corresponds to the DOMContentLoaded
event of browsers. In older browsers, where DOMContentLoaded
is not fired, the ready
event corresponds to the load
event of the page. In case the FusionCharts library is included in the page when the DOMContentLoaded
event is already fired (i.e. the script is loaded asyncronously using AJAX or by using script deferring methods) the ready
event is still fired to ensure integrity of all the listeners.
In many ways the nature of this event is similar to the jQuery(document).ready
function of the jQuery library and the Ext.onReady
function of the ExtJS library. One should interact with the FusionCharts framework (i.e. create new charts, set options, etc.) only after this event has been fired. This event also helps you to neatly write your code in separate script files and in the page <head>
thus keeping scripts from being a part of your page <body>
.
An alternate (and shorthand) method to subscribing the ready
event is to use the ready function. One advantage that the ready function has over the ready
event is that the event is fired only once during the life-cycle of a page while functions passed to the ready function are executed even when attached after the ready
event has been fired.
This is a framework level event and as such can be only listened via the FusionCharts object on the FusionCharts
class alone. It will not be fired if it is subscribed from individual chart instances.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was defaultPrevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{FusionCharts framework version returned in the form of an array, equivalent to the array version
Boolean attribute to indicate whether the event was triggered at the instant of the window.ondomcontentloaded
event (window.onload
for older browsers) or whether the window was already loaded and the event was fired to maintain integrity
dataObj (Deprecated)
:{FusionCharts framework version returned in the form of an array, equivalent to the array version
Boolean attribute to indicate whether the event was triggered at the instant of the window.ondomcontentloaded
event (window.onload
for older browsers) or whether the window was already loaded and the event was fired to maintain integrity
Example
<html>
<head>
<script type="text/javascript" src="/fusioncharts/js/fusioncharts.js"></script>
<script type="text/javascript">
// Render a chart within a chart container `div` element.
FusionCharts.addEventListener('ready', function () {
var chart = new FusionCharts({
type: 'column2d',
renderAt: 'chart-container-div',
dataFormat: 'json',
dataSource: {
chart: {
caption: "Quarterly sales summary",
numberPrefix: "$"
}
data: [
{ label: "Q1", value: "213345"},
{ label: "Q2", value: "192672"},
{ label: "Q3", value: "201238"},
{ label: "Q4", value: "209881"},
]
}
});
// Since we are in the `ready` block, the `chart-container-div`
// element should be available by now.
chart.render();
});
</script>
<body>
<div id="chart-container-div">Chart loads here...</div>
</body>
</html>
beforeInitialize static event
This pre-initialization event is triggered every time a new instance of the FusionCharts object is created. It then triggers a number of modules that need to be setup on every instance of FusionCharts; the event can be used to perform any actions required to be completed before the initialization of each chart.
Because this event is triggered upon instantiating a new FusionCharts
object, it is virtually impossible to listen to this event by adding an event listener to the chart. By the time the event listener is attached (using the addEventListener() method), the event is already fired.
However, there are alternate ways that can be used to listen to this event. You can listen to the FusionCharts global events, using the addEventListener static method before even creating a new instance. (The required instance can be identified by the id
of the chart using eventObject.sender.id
.) You can also pass the event listener as a parameter of the FusionCharts constructor.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Type of chart rendered
Id of the HTML DOM element within which the chart is rendered
Chart width
Chart height
Type of data (json, jsonurl, xml, xmlurl) passed to the chart object
Object containing the source data for the chart
Object containing details of all events configured for the chart
dataObj (Deprecated)
:{Type of chart rendered
Id of the HTML DOM element within which the chart is rendered
Chart width
Chart height
Type of data (json, jsonurl, xml, xmlurl) passed to the chart object
Object containing the source data for the chart
Object containing details of all events configured for the chart
Example
// Listening using global events
FusionCharts.addEventListener('beforeInitialize', function (opts) {
// Prints id of the chart being rendered
console.log("Chart with id " + opts.sender.id + " is about to be initialized.");
});
// Pass event listener in the FusionCharts constructor
var mychart = new FusionCharts({
"type": "column2d",
"dataFormat": "json",
"dataSource": {
...
},
// Attach event handlers
"events": {
// Attach to beforeInitialize
"beforeInitialize": function () {
console.log("Initializing mychart...");
}
}
});
initialized static event
Triggered when a new instance of the FusionCharts constructor is created.
Initialization does not indicate that the chart has rendered; it only indicates that the JavaScript object instance (
new FusionCharts()
) is created and is ready to be operated upon.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Type of chart
Id of the HTML DOM element within which the chart is rendered
Chart width
Chart height
Type of data (json, jsonurl, xml, xmlurl) passed to the chart object
Object containing the source data for the chart
Object containing details of all events configured for the chart
dataObj (Deprecated)
:{Type of chart
Id of the HTML DOM element within which the chart is rendered
Chart width
Chart height
Type of data (json, jsonurl, xml, xmlurl) passed to the chart object
Object containing the source data for the chart
Object containing details of all events configured for the chart
Example
// Listening using global events
FusionCharts.addEventListener('initialized', function (opts) {
// Prints id of the chart that has initialized
console.log("Chart with id " + opts.sender.id + " has been initialized.");
});
// Pass event listener in the FusionCharts constructor
var mychart = new FusionCharts({
"type": "column2d",
"dataFormat": "json",
"dataSource": {
...
},
// Attach event handlers
"events": {
// Attach to beforeInitialize
"initialized": function () {
console.log("Initialized mychart...");
}
}
});
beforeLinkedItemOpen
Triggered just before a linked item in a [LinkedChart]{% linkTo tutorials/advanced-charting/drill-down/linkedcharts.md %} is rendered, after the parent link is clicked. It is triggered before the instance of the drill-down chart is instantiated.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Level of the linked chart in to the parent chart (starts from 0)
dataObj (Deprecated)
:{Level of the linked chart in to the parent chart (starts from 0)
linkedItemOpened
Triggered when a linked chart is rendered, after the parent link is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{beforeLinkedItemClose
Triggered just before a linked chart is closed.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{linkedItemClosed
Triggered when a linked chart is closed to go back to its parent chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Level of the linked chart in to the parent chart (starts from 0)
dataObj (Deprecated)
:{Level of the linked chart in to the parent chart (starts from 0)
printReadyStateChange (Deprecated API)
Used to notify the status of the print manager. Triggered when the print manager starts processing all charts to be printed and again when all charts are ready for managed printing.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
dataLoadRequestCompleted
Triggered when chart data is successfully loaded from a URL (instead of a static JSON or XML file from the system).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Nature of the data load request. Presently, its value is XMLHttpRequest.
URL of the data source
Format of the source data (json or xml)
true if silent instructions are saved to arguments
Function called once the event is fired
Object containing the source data for the chart
Object that fetches the data
dataObj (Deprecated)
:{Nature of the data load request. Presently, its value is XMLHttpRequest.
URL of the data source
Format of the source data (json or xml)
true if silent instructions are saved to arguments
Function called once the event is fired
Object containing the source data for the chart
Object that fetches the data
dataLoadError
Triggered if an error is encountered while loading data from the specified URL to the chart object.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{URL to fetch the source data
Format of the source data (json or xml)
Error object passed to the event for debugging the JavaScript errors encountered
Parameter to identify server communication issues (for example, 404 status is returned if the URL is not found)
dataObj (Deprecated)
:{URL to fetch the source data
Format of the source data (json or xml)
Error object passed to the event for debugging the JavaScript errors encountered
Parameter to identify server communication issues (for example, 404 status is returned if the URL is not found)
dataLoadCancelled
Triggered when the default behavior of the beforedataload event is cancelled using the eventObj.preventDefault()
method. Subsequently, all AJAX requests are aborted.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{dataLoadRequestCancelled
Triggered when the default behavior of the dataLoadRequested event is cancelled by calling the eventObj.preventDefault()
method. The event is internally fired if the data source is a local path or the URL fails internal security checks.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Nature of the data load request. Presently, its value is XMLHttpRequest.
URL of the data source
Format of the source data (json or xml)
true if silent instructions are saved to arguments
Function called once the event is fired
Function called once the event is fired
dataObj (Deprecated)
:{Nature of the data load request. Presently, its value is XMLHttpRequest.
URL of the data source
Format of the source data (json or xml)
true if silent instructions are saved to arguments
Function called once the event is fired
Function called once the event is fired
beforedataload
Triggered when the data is updated to a chart. This hook can be used by the theme manager to update the chart data.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart data
dataUpdated
Triggered when chart data is updated and the chart is redrawn, after the drawComplete event.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart data, in the [data format]dataFormats used
Format in which chart data is finally passed to the chart
Object containing the source data for the chart
Format of the source data
true if silent instructions are saved to arguments
dataObj (Deprecated)
:{Chart data, in the [data format]dataFormats used
Format in which chart data is finally passed to the chart
Object containing the source data for the chart
Format of the source data
true if silent instructions are saved to arguments
dataUpdateCancelled
Triggered when the default behavior of the beforeDataUpdate event is cancelled by calling the eventObj.preventDefault()
method.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart data
Format in which the data was to be passed on for rendering
Source data, as specified using data setter functions like setChartData()
Format of the source data (json or xml)
Error object passed to the event for debugging the JavaScript errors encountered
dataObj (Deprecated)
:{Chart data
Format in which the data was to be passed on for rendering
Source data, as specified using data setter functions like setChartData()
Format of the source data (json or xml)
Error object passed to the event for debugging the JavaScript errors encountered
dataLoadRequested
Triggered when chart data is loaded from a URL instead of a static JSON or XML file from the system.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Nature of the data load request. Presently, its value is XMLHttpRequest.
URL of the data source
Format of the source data (json or xml)
true if silent instructions are saved to arguments
Function called once the event is fired
dataObj (Deprecated)
:{Nature of the data load request. Presently, its value is XMLHttpRequest.
URL of the data source
Format of the source data (json or xml)
true if silent instructions are saved to arguments
Function called once the event is fired
beforeDataUpdate
Triggered just before chart data is passed to the chart. It is useful if any operations have to be performed on the data before it is applied to the chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart data, in the [data format]dataFormats used
Format in which chart data is finally passed to the chart
Object containing the source data for the chart
Format of the source data
true if silent instructions are saved to arguments
dataObj (Deprecated)
:{Chart data, in the [data format]dataFormats used
Format in which chart data is finally passed to the chart
Object containing the source data for the chart
Format of the source data
true if silent instructions are saved to arguments
Example
// Show data of a single-series column chart in an
// ascending sorted order.
FusionCharts.ready(function () {
var chart = new FusionCharts({
type: "column2d",
renderAt: "chart-container"
});
// Add the data handler to intercept incoming
// data and sort it.
chart.addEventListener("beforeDataUpdate", function (event, args) {
var data = args.data,
values;
// If incoming data is not JSON then convert it to JSON
if (args.format !== 'json') {
data = FusionCharts.transcodeData(data, args.format, 'json');
}
// Get hold of the data array
values = data.data;
if (values && values.length) { // Check whether data exists
// Sort the data by passing a comparison function to the
// sort function of the array of values.
values.sort(function (a, b) {
return (a && a.value) - (b && b.value);
});
}
// Convert data back to original format in case it wasn't
// originally JSON
if (args.format !== 'json') {
data = FusionCharts.transcodeData(data, 'json', args.format);
}
// Replace the data with updated data.
args.data = data;
});
});
realTimeUpdateComplete
Triggered every time a real-time chart completes updating, using the dataStreamURL
attribute or through user-interaction (using the edit mode of the real-time angular and linear gauges).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{chartCleared
Triggered when the complete chart canvas is cleared by calling the clearChart() method or by clicking the context menu in real-time charts.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
slicingEnd
Triggered when a pie or a doughnut slice completes slicing out/slicing in.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{dataObj (Deprecated)
:{slicingStart
Triggered when a pie or a doughnut slice begins slicing out/slicing in.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{dataObj (Deprecated)
:{entityRollOut
Triggered when the mouse pointer is rolled out from over an entity on a map.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{entityRollOver
Triggered when the mouse pointer is rolled over an entity on a map.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{entityClick
Triggered when an entity on a map is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Example
FusionCharts.ready(function () {
var map = new FusionCharts({
type: 'maps/world',
renderAt: 'map-container-div',
events: {
entityClick: function (event, args) {
console.log(args.label + 'clicked');
}
}
});
});
connectorRollOver
This event is applicable to the connector element of the Gantt chart and the maps. It is triggered when the mouse pointer is rolled over a connector connecting the tasks (on a Gantt chart) or the markers (on a map).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart.
ID of the source task for the connector
Applicable only to the Gantt chart.
ID of the destination task for the connector
Applicable only to the Gantt chart.
Position of the connector on the source task bar. Set to 1 if the connector starts from the left edge of the task bar, set to 0 if it starts from the right edge.
Applicable only to the Gantt chart.
Position of the connector on the destination task bar. Set to 1 if the connector ends at the left edge of the task bar, set to 0 if it ends at the right edge.
Applicable only to the Gantt chart.
URL to which the user will be redirected, if the connector is clicked
Applicable only to the Gantt chart.
Type of the element that triggered the event. For the connectorRollOver
event, it will be connector.
Applicable only to the Gantt chart.
ID of the source marker for the connector
Applicable only to maps.
ID of the destination marker for the connector
Applicable only to maps.
Connector label, specified using the label
attribute
Applicable only to maps.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart.
ID of the source task for the connector
Applicable only to the Gantt chart.
ID of the destination task for the connector
Applicable only to the Gantt chart.
Position of the connector on the source task bar. Set to 1 if the connector starts from the left edge of the task bar, set to 0 if it starts from the right edge.
Applicable only to the Gantt chart.
Position of the connector on the destination task bar. Set to 1 if the connector ends at the left edge of the task bar, set to 0 if it ends at the right edge.
Applicable only to the Gantt chart.
URL to which the user will be redirected, if the connector is clicked
Applicable only to the Gantt chart.
Type of the element that triggered the event. For the connectorRollOver
event, it will be connector.
Applicable only to the Gantt chart.
ID of the source marker for the connector
Applicable only to maps.
ID of the destination marker for the connector
Applicable only to maps.
Connector label, specified using the label
attribute
Applicable only to maps.
connectorRollOut
This event is applicable to the connector element of the Gantt chart and the maps. It is triggered when the mouse pointer is rolled out from over a connector connecting the tasks (on a Gantt chart) or the markers (on a map).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
x-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart.
ID of the source task for the connector
Applicable only to the Gantt chart.
ID of the destination task for the connector
Applicable only to the Gantt chart.
Position of the connector on the source task bar. Set to 1 if the connector starts from the left edge of the task bar, set to 0 if it starts from the right edge.
Applicable only to the Gantt chart.
Position of the connector on the destination task bar. Set to 1 if the connector ends at the left edge of the task bar, set to 0 if it ends at the right edge.
Applicable only to the Gantt chart.
URL to which the user will be redirected, if the connector is clicked
Applicable only to the Gantt chart.
Type of the element that triggered the event. For the connectorRollOut
event, it will be connector.
Applicable only to the Gantt chart.
ID of the source marker for the connector
Applicable only to maps.
ID of the destination marker for the connector
Applicable only to maps.
Connector label, specified using the label
attribute
Applicable only to maps.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
x-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart.
ID of the source task for the connector
Applicable only to the Gantt chart.
ID of the destination task for the connector
Applicable only to the Gantt chart.
Position of the connector on the source task bar. Set to 1 if the connector starts from the left edge of the task bar, set to 0 if it starts from the right edge.
Applicable only to the Gantt chart.
Position of the connector on the destination task bar. Set to 1 if the connector ends at the left edge of the task bar, set to 0 if it ends at the right edge.
Applicable only to the Gantt chart.
URL to which the user will be redirected, if the connector is clicked
Applicable only to the Gantt chart.
Type of the element that triggered the event. For the connectorRollOut
event, it will be connector.
Applicable only to the Gantt chart.
ID of the source marker for the connector
Applicable only to maps.
ID of the destination marker for the connector
Applicable only to maps.
Connector label, specified using the label
attribute
Applicable only to maps.
connectorClick
This event is applicable to the connector element of the Gantt chart and the maps. It is triggered when a connector connecting the tasks (on a Gantt chart) or the markers (on a map) is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
x-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart.
ID of the source task for the connector
Applicable only to the Gantt chart.
ID of the destination task for the connector
Applicable only to the Gantt chart.
Position of the connector on the source task bar. Set to 1 if the connector starts from the left edge of the task bar, set to 0 if it starts from the right edge.
Applicable only to the Gantt chart.
Position of the connector on the destination task bar. Set to 1 if the connector ends at the left edge of the task bar, set to 0 if it ends at the right edge.
Applicable only to the Gantt chart.
URL to which the user will be redirected, if the connector is clicked
Applicable only to the Gantt chart.
Type of the element that triggered the event. For the connectorClick
event, it will be connector.
Applicable only to the Gantt chart.
ID of the source marker for the connector
Applicable only to maps.
ID of the destination marker for the connector
Applicable only to maps.
Connector label, specified using the label
attribute
Applicable only to maps.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the chart
Applicable only to the Gantt chart
x-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart
y-coordinate of the pointer, relative to the page
Applicable only to the Gantt chart.
ID of the source task for the connector
Applicable only to the Gantt chart.
ID of the destination task for the connector
Applicable only to the Gantt chart.
Position of the connector on the source task bar. Set to 1 if the connector starts from the left edge of the task bar, set to 0 if it starts from the right edge.
Applicable only to the Gantt chart.
Position of the connector on the destination task bar. Set to 1 if the connector ends at the left edge of the task bar, set to 0 if it ends at the right edge.
Applicable only to the Gantt chart.
URL to which the user will be redirected, if the connector is clicked
Applicable only to the Gantt chart.
Type of the element that triggered the event. For the connectorClick
event, it will be connector.
Applicable only to the Gantt chart.
ID of the source marker for the connector
Applicable only to maps.
ID of the destination marker for the connector
Applicable only to maps.
Connector label, specified using the label
attribute
Applicable only to maps.
Example
//declaring the fusioncharts object.
var myMap = new FusionCharts( "Maps/FCMap_World.swf", "myMapId", "400", "300", "0" );
//setting the data source.
myMap.setXMLUrl("Data.xml");
//rendering the chart in the associated Div.
myMap.render("mapContainer");
//function to perform the necessary action on capturing the connectorClicked event.
//alert the user with the from and to marker id's.
function listenerEvent(eventObject, argumentsObject){
alert( "From marker ID: "+ argumentsObject.fromMarkerId + ",
To marker ID: " + argumentsObject.toMarkerId);
}
//listening to the connector click event
FusionCharts("myMapId").addEventListener ("connectorClicked" , listenerEvent );
markerRollOver
Triggered when the mouse pointer is rolled over a marker on a map.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Marker label
Original x-coordinate of the marker
Original y-coordinate of the marker
Scaled x-coordinate of the marker
Scaled y-coordinate of the marker
x-coordinate of the marker in to the top-left corner of the map canvas
y-coordinate of the marker in to the top-left corner of the map canvas
dataObj (Deprecated)
:{Marker label
Original x-coordinate of the marker
Original y-coordinate of the marker
Scaled x-coordinate of the marker
Scaled y-coordinate of the marker
x-coordinate of the marker in to the top-left corner of the map canvas
y-coordinate of the marker in to the top-left corner of the map canvas
Example
//declaring the FusionCharts object.
var myMap = new FusionCharts( "Maps/FCMap_World.swf", "myMapId", "400", "300", "0" );
//passing the data to the object in *XML* format.
myMap.setXMLUrl("Data.xml");
//rendering the chart in the map container.
myMap.render("mapContainer");
//the function which gets executed when the MarkerRollOver event is captured.
function myChartListener(eventObject, argumentsObject){
alert([
"ID: ", argumentsObject.id, "; Label: ", argumentsObject.label,
"; x: ", argumentsObject.x, ", y: ", argumentsObject.x,
"; scaledX: ", argumentsObject.scaledX, ", scaledY: ", argumentsObject.scaledY,
"; chartX: ", argumentsObject.chartX, ", chartY: ", argumentsObject.chartY
].join(""));
}
//listening to the markerRollOver event.
FusionCharts("myMapId").addEventListener ("markerRollOver" , myChartListener );
markerRollOut
Triggered when the mouse pointer is rolled out from over a marker on a map.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Marker label
Original x-coordinate of the marker
Original y-coordinate of the marker
Scaled x-coordinate of the marker
Scaled y-coordinate of the marker
x-coordinate of the marker in to the top-left corner of the map canvas
y-coordinate of the marker in to the top-left corner of the map canvas
dataObj (Deprecated)
:{Marker label
Original x-coordinate of the marker
Original y-coordinate of the marker
Scaled x-coordinate of the marker
Scaled y-coordinate of the marker
x-coordinate of the marker in to the top-left corner of the map canvas
y-coordinate of the marker in to the top-left corner of the map canvas
Example
//declaring the Fusion Charts object.
var myMap = new FusionCharts( "Maps/FCMap_World.swf", "myMapId", "400", "300", "0" );
//passing the data to the object in *XML* format.
myMap.setXMLUrl("Data.xml");
//rendering the chart in the map container.
myMap.render("mapContainer");
//the function which gets executed when the MarkerRollOut event is captured.
function myChartListener(eventObject, argumentsObject){
alert([
"ID: ", argumentsObject.id, "; Label: ", argumentsObject.label,
"; x: ", argumentsObject.x, ", y: ", argumentsObject.x,
"; scaledX: ", argumentsObject.scaledX, ", scaledY: ", argumentsObject.scaledY,
"; chartX: ", argumentsObject.chartX, ", chartY: ", argumentsObject.chartY
].join(""));
}
//listening to the markerRollOut event.
FusionCharts("myMapId").addEventListener ("markerRollOut" , myChartListener );
markerClick
Triggered when a marker on a map is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Marker label
Original x-coordinate of the marker
Original y-coordinate of the marker
Scaled x-coordinate of the marker
Scaled y-coordinate of the marker
x-coordinate of the marker in to the top-left corner of the map canvas
y-coordinate of the marker in to the top-left corner of the map canvas
dataObj (Deprecated)
:{Marker label
Original x-coordinate of the marker
Original y-coordinate of the marker
Scaled x-coordinate of the marker
Scaled y-coordinate of the marker
x-coordinate of the marker in to the top-left corner of the map canvas
y-coordinate of the marker in to the top-left corner of the map canvas
Example
//declaring the Fusion Charts object.
var myMap = new FusionCharts( "Maps/FCMap_World.swf", "myMapId", "400", "300", "0" );
//passing the data to the object in *XML* format.
myMap.setXMLUrl("Data.xml");
//rendering the chart in the map container.
myMap.render("mapContainer");
//the function which gets executed when the MarkerClick event is captured.
function myChartListener(eventObject, argumentsObject){
alert([
"ID: ", argumentsObject.id, "; Label: ", argumentsObject.label,
"; x: ", argumentsObject.x, ", y: ", argumentsObject.x,
"; scaledX: ", argumentsObject.scaledX, ", scaledY: ", argumentsObject.scaledY,
"; chartX: ", argumentsObject.chartX, ", chartY: ", argumentsObject.chartY
].join(""));
}
//listening to the markerClicked event.
FusionCharts("myMapId").addEventListener ("markerClicked" , myChartListener );
rotationEnd
Triggered when a pie/doughnut chart completes rotating.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{rotationStart
Triggered when a pie/doughnut chart starts rotating.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Measure of the angle from which the pie/doughnut chart starts rotating
dataObj (Deprecated)
:{Measure of the angle from which the pie/doughnut chart starts rotating
centerLabelRollover
Triggered every time the mouse pointer is rolled over the center label of the doughnut chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Text displayed as the center label
dataObj (Deprecated)
:{Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Text displayed as the center label
centerLabelRollout
Triggered every time the mouse pointer is rolled out of the center label of the doughnut chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Text displayed as the center label
dataObj (Deprecated)
:{Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Text displayed as the center label
centerLabelClick
Triggered every time the center label of the doughnut chart is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Text displayed as the center label
dataObj (Deprecated)
:{Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Text displayed as the center label
centerLabelChanged
Triggered every time the text within the center label of the doughnut chart changes.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Text displayed as the center label
dataObj (Deprecated)
:{Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Text displayed as the center label
chartClick
Triggered every time a chart is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Example
FusionCharts.ready(function () {
var chart = new FusionCharts({
type: 'column2d',
dataFormat: 'jsonurl',
dataSource: 'chart-data.json',
renderAt: 'chart-container-div',
events: {
chartClick: function (eventObj, argsObj) {
console.log('Chart clicked at ' + argsObj.chartX + ',' + argsObj.chartY);
}
}
});
chart.render();
});
chartMouseMove
Triggered when the mouse pointer is moved over a chart. The event arguments pass useful information related to pointer location, relative to the chart and the page, that can be used for positioning elements like annotations or integrating charts with custom tooltip libraries.
By default, a chart does not trigger this event until is enabled to do so. To enable this event for a chart, set the
enableChartMouseMoveEvent
attribute to 1.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
chartRollOver
Triggered every time the mouse pointer is rolled over a chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Example
// Create a chart and display the caption of the chart over which the mouse has been hovered. The
// event is attached to the FusionCharts global `addEventListener` function so that it is fired for
// all charts rendered on that page Once this event listener has been attached, any chart rendered on
// page will cause a console log when hovered or tapped.
FusionCharts.addEventListener('chartRollOver', function (event) {
var chart = event.sender, // access the chart that raised this event
caption = chart && chart.getChartAttribute('caption'); // get the chart caption
// Output the caption in JavaScript console
console.log('Mouse entered on the chart with caption: ' + caption);
});
chartRollOut
Triggered every time the mouse pointer is rolled out from over a chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Chart width, in pixels or percentage
Chart height, in pixels or percentage
DOM element used to render the chart
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
Chart ID
Example
// Create a chart and display the caption of the chart over which the mouse has been hovered. The
// event is attached to the FusionCharts global `addEventListener` function so that it is fired for
// all charts rendered on that page Once this event listener has been attached, any chart rendered on
// page will cause a console log when hovered out or tapped away.
FusionCharts.addEventListener('chartRollOut', function (event) {
var chart = event.sender, // access the chart that raised this event
caption = chart && chart.getChartAttribute('caption'); // get the chart caption
// Output the caption in JavaScript console
console.log('Mouse left the chart with caption: ' + caption);
});
backgroundLoaded
Triggered when the background image for a chart (specified using the bgImage
attribute) is loaded.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{URL of the background image
Transparency of the image
Display mode set for the image
Vertical alignment of the image
Horizontal alignment of the image
Image width
Image height
dataObj (Deprecated)
:{URL of the background image
Transparency of the image
Display mode set for the image
Vertical alignment of the image
Horizontal alignment of the image
Image width
Image height
backgroundLoadError
Triggered when there is an error in loading the background image for a chart (specified using the bgImage
attribute).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{URL of the background image
Transparency of the image
Display mode set for the image
Vertical alignment of the image
Horizontal alignment of the image
Image width
Image height
Error object passed to the event for debugging the JavaScript errors encountered
dataObj (Deprecated)
:{URL of the background image
Transparency of the image
Display mode set for the image
Vertical alignment of the image
Horizontal alignment of the image
Image width
Image height
Error object passed to the event for debugging the JavaScript errors encountered
legendItemClicked
Triggered when a legend item is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart ID
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Dataset to which the data plot belongs
Index of the data plot, in the order of its definition in the dataset
Visibility status of the legend item (true if shown, false if hidden)
preventDefaults
function
dataObj (Deprecated)
:{Chart ID
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Dataset to which the data plot belongs
Index of the data plot, in the order of its definition in the dataset
Visibility status of the legend item (true if shown, false if hidden)
preventDefaults
function
legendItemRollover
Triggered when the mouse pointer is rolled over a legend item.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart ID
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Dataset to which the data plot belongs
Index of the data plot, in the order of its definition in the dataset
Visibility status of the legend item (true if shown, false if hidden)
dataObj (Deprecated)
:{Chart ID
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Dataset to which the data plot belongs
Index of the data plot, in the order of its definition in the dataset
Visibility status of the legend item (true if shown, false if hidden)
legendItemRollout
Triggered when the mouse pointer is rolled out from over a legend item.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart ID
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Dataset to which the data plot belongs
Index of the data plot, in the order of its definition in the dataset
Visibility status of the legend item (true if shown, false if hidden)
dataObj (Deprecated)
:{Chart ID
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Dataset to which the data plot belongs
Index of the data plot, in the order of its definition in the dataset
Visibility status of the legend item (true if shown, false if hidden)
logoRollover
Triggered when the mouse pointer is rolled over a logo on a chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL of the logo image
Transparency set for the logo
Logo position (tr, tl, br, bl)
Logo image scaling value
URL to which the user will be redirected, if the logo is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL of the logo image
Transparency set for the logo
Logo position (tr, tl, br, bl)
Logo image scaling value
URL to which the user will be redirected, if the logo is clicked
logoRollout
Triggered when the mouse pointer is rolled out from over a logo on a chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL of the logo image
Transparency set for the logo
Logo position (tr, tl, br, bl)
Logo image scaling value
URL to which the user will be redirected, if the logo is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL of the logo image
Transparency set for the logo
Logo position (tr, tl, br, bl)
Logo image scaling value
URL to which the user will be redirected, if the logo is clicked
logoClick
Triggered when the logo on a chart is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL of the logo image
Transparency set for the logo
Logo position (tr, tl, br, bl)
Logo image scaling value
URL to which the user will be redirected, if the logo is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL of the logo image
Transparency set for the logo
Logo position (tr, tl, br, bl)
Logo image scaling value
URL to which the user will be redirected, if the logo is clicked
logoLoaded
Triggered when the logo is loaded on a chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{dataObj (Deprecated)
:{logoLoadError
Triggered when the logo cannot be loaded on a chart because of an error.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{URL of the logo image
Transparency set for the logo
Logo position (tr, tl, br, bl)
Logo image scaling value
URL to which the user will be redirected, if the logo is clicked
Error object passed to the event for debugging the JavaScript errors encountered
dataObj (Deprecated)
:{URL of the logo image
Transparency set for the logo
Logo position (tr, tl, br, bl)
Logo image scaling value
URL to which the user will be redirected, if the logo is clicked
Error object passed to the event for debugging the JavaScript errors encountered
beforeExport
Triggered just before the exporting process of a chart begins, through the export context menu or when the exportChart() method is called programmatically.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Object containing the status of buttons on the chart
Background color of the exported chart
Transparency set for the exported chart
Action for exporting image/PDF. Set to download, if the exported image will be sent back to the client as a download, set to save if it will be saved on the server.
Name (with extension) for the exported image/PDF
Path of the server-side export handler
Format in which the chart is exported (jpg, png, pdf)
Additional parameters sent by the chart (defined using the exportParameters
chart attribute)
In case of server-side exporting and when using download as action, this shows whether the exported image/PDF will opened in the same window (as an attachment for download), or it will open in a new window.
Applicable only for server-side exporting.
Callback function executed after the chart is exported
Boolean attribute that indicates if the chart had external images that were also exported
Object containing all the export formats available
dataObj (Deprecated)
:{Object containing the status of buttons on the chart
Background color of the exported chart
Transparency set for the exported chart
Action for exporting image/PDF. Set to download, if the exported image will be sent back to the client as a download, set to save if it will be saved on the server.
Name (with extension) for the exported image/PDF
Path of the server-side export handler
Format in which the chart is exported (jpg, png, pdf)
Additional parameters sent by the chart (defined using the exportParameters
chart attribute)
In case of server-side exporting and when using download as action, this shows whether the exported image/PDF will opened in the same window (as an attachment for download), or it will open in a new window.
Applicable only for server-side exporting.
Callback function executed after the chart is exported
Boolean attribute that indicates if the chart had external images that were also exported
Object containing all the export formats available
exported
Triggered when a chart exports successfully.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{ID of the chart exported
Chart height
Chart width
Name of the exported file and the path where it is saved
Success status code of the export. Set to 1 if the export is successful, set to 0 if it fails.
Message indicating success or failure
Message indicating that the chart was previously exported in the same format. In this case, a suffix for the file is internally generated and added to the filename.
Configure your code to show the properties and their values for the
dataObj
parameter in the console. You can then see the suffix that is generated internally.
dataObj (Deprecated)
:{ID of the chart exported
Chart height
Chart width
Name of the exported file and the path where it is saved
Success status code of the export. Set to 1 if the export is successful, set to 0 if it fails.
Message indicating success or failure
Message indicating that the chart was previously exported in the same format. In this case, a suffix for the file is internally generated and added to the filename.
Configure your code to show the properties and their values for the
dataObj
parameter in the console. You can then see the suffix that is generated internally.
exportCancelled
Triggered when the default behavior of the beforeExport event is cancelled by calling the eventObj.preventDefault()
method.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart data as XML string
Background color of the exported chart
Transparency set for the exported chart
Action for exporting image/PDF. Set to download, if the exported image will be sent back to the client as a download, set to save if it will be saved on the server.
Name (with extension) for the exported image/PDF
Path of the server-side export handler
Format in which the chart is exported (jpg, png, pdf)
Additional parameters sent by the chart (defined using the exportParameters
chart attribute)
In case of server-side exporting and when using download as action, this shows whether the exported image/PDF will open in the same window (as an attachment for download), or it will open in a new window.
Applicable only for server-side exporting.
Callback function executed after the chart is exported
Boolean attribute to indicate if the chart had external images that were also exported
Object containing all the export formats available
dataObj (Deprecated)
:{Chart data as XML string
Background color of the exported chart
Transparency set for the exported chart
Action for exporting image/PDF. Set to download, if the exported image will be sent back to the client as a download, set to save if it will be saved on the server.
Name (with extension) for the exported image/PDF
Path of the server-side export handler
Format in which the chart is exported (jpg, png, pdf)
Additional parameters sent by the chart (defined using the exportParameters
chart attribute)
In case of server-side exporting and when using download as action, this shows whether the exported image/PDF will open in the same window (as an attachment for download), or it will open in a new window.
Applicable only for server-side exporting.
Callback function executed after the chart is exported
Boolean attribute to indicate if the chart had external images that were also exported
Object containing all the export formats available
beforePrint
Triggered before the printing process for a chart begins, after the print() method is called on the chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
printComplete
Triggered when the user confirms or cancels printing through the browser's print dialog box.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
printCancelled
Triggered when the default behavior of the beforePrint event is cancelled by calling the eventObj.preventDefault()
method.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
dataLabelClick
Triggered every time the x-axis label of a data plot is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Label text
Index of the data plot, in order of its definition in the source data
URL to which the user will be redirected, if the data label is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Label text
Index of the data plot, in order of its definition in the source data
URL to which the user will be redirected, if the data label is clicked
dataLabelRollOver
Triggered when the mouse pointer is rolled over the x-axis label of a data plot.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Label text
Index of the data plot, in order of its definition in the source data
URL to which the user will be redirected, if the data label is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Label text
Index of the data plot, in order of its definition in the source data
URL to which the user will be redirected, if the data label is clicked
dataLabelRollOut
Triggered when the mouse pointer is rolled out from over the x-axis label of a data plot.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Label text
Index of the data plot, in order of its definition in the source data
URL to which the user will be redirected, if the data label is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Label text
Index of the data plot, in order of its definition in the source data
URL to which the user will be redirected, if the data label is clicked
scrollStart
Triggered when you begin scrolling through a chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Position of the scroll, when you start scrolling.
dataObj (Deprecated)
:{Position of the scroll, when you start scrolling.
scrollEnd
Triggered when a chart completes scrolling.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{onScroll
Triggered while scrolling through a zoom-line chart or scroll charts.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Position of the scroll when you finish scrolling
dataObj (Deprecated)
:{Position of the scroll when you finish scrolling
zoomReset
Triggered every time a zoom-line/zoom-scatter chart is reset to its original values (when the zooming history is cleared).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
zoomedOut
Triggered every time a zoom-line/zoom-scatter chart is zoomed out.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Zooming level. Starting at 1, the value increments as the user further zooms in for the same subset of data and decrements when the user zooms out.
Data index of the first item in the zoomed out view
Data label of the first item in the zoomed out view
Data index of the last item in the zoomed out view
Data label of the last item in the zoomed out view
dataObj (Deprecated)
:{Zooming level. Starting at 1, the value increments as the user further zooms in for the same subset of data and decrements when the user zooms out.
Data index of the first item in the zoomed out view
Data label of the first item in the zoomed out view
Data index of the last item in the zoomed out view
Data label of the last item in the zoomed out view
zoomedIn
Triggered every time a zoom-line/zoom-scatter chart is zoomed in.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Zooming level. Starting at 1, the value increments as the user further zooms in for the same subset of data and decrements when the user zooms out.
Data index of the first item in the zoomed in view
Data label of the first item in the zoomed in view
Data index of the last item in the zoomed in view
Data label of the last item in the zoomed in view
dataObj (Deprecated)
:{Zooming level. Starting at 1, the value increments as the user further zooms in for the same subset of data and decrements when the user zooms out.
Data index of the first item in the zoomed in view
Data label of the first item in the zoomed in view
Data index of the last item in the zoomed in view
Data label of the last item in the zoomed in view
zoomed
Triggered every time a zoom-line/zoom-scatter chart is zoomed in or zoomed out.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Zooming level. Starting at 1, the value increments as the user further zooms in for the same subset of data and decrements when the user zooms out.
Data index of the starting item in the zoomed view
Data label of the starting item in the zoomed view
Data index of the starting item in the zoomed view
Data label of the ending item in the zoomed view
dataObj (Deprecated)
:{Zooming level. Starting at 1, the value increments as the user further zooms in for the same subset of data and decrements when the user zooms out.
Data index of the starting item in the zoomed view
Data label of the starting item in the zoomed view
Data index of the starting item in the zoomed view
Data label of the ending item in the zoomed view
zoomModeChanged
Triggered every time a zoom-line/zoom-scatter chart switches between the pin mode and the zoom mode.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Active viewing mode of the zoom line chart. Set to true if the chart is in pin mode, set to false if the chart is in zoom mode.
dataObj (Deprecated)
:{Active viewing mode of the zoom line chart. Set to true if the chart is in pin mode, set to false if the chart is in zoom mode.
pinned
Triggered in the pin mode of a zoom-line chart, when the user performs data selection to pin a range.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Data index of the first item in the zoomed in view of the pin mode
Data label of the first item in the zoomed in view of the pin mode
Data index of the last item in the zoomed in view of the pin mode
Data label of the last item in the zoomed in view of the pin mode
dataObj (Deprecated)
:{Data index of the first item in the zoomed in view of the pin mode
Data label of the first item in the zoomed in view of the pin mode
Data index of the last item in the zoomed in view of the pin mode
Data label of the last item in the zoomed in view of the pin mode
dataRestored
Triggered when all data plots on the interactive charts (select-scatter, drag-node, and drag-able charts) are restored to their original values (by clicking the Restore button).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
beforeDataSubmit
Triggered when the Submit button on interactive charts (select-scatter, drag-node, and drag-able charts) is clicked, after the data values are updated by the user.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{XML string with the complete chart data in the current state
dataObj (Deprecated)
:{XML string with the complete chart data in the current state
dataSubmitError
Triggered when there is an ajax error in sending the POST request with the user-submitted data in interactive charts (select-scatter, drag-node, and dragable charts).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart data as XML string
URL to which the data is sent as HTTP POST request
Status code of the ajax POST request
Ajax error message
XMLHttpRequest object that takes care of sending the XML chart data. In case of an error, this object is undefined.
dataObj (Deprecated)
:{Chart data as XML string
URL to which the data is sent as HTTP POST request
Status code of the ajax POST request
Ajax error message
XMLHttpRequest object that takes care of sending the XML chart data. In case of an error, this object is undefined.
dataSubmitted
Triggered when the ajax POST request for sending user-submitted data in interactive charts (select-scatter, drag-node, and dragable charts) to the URL is successfully completed.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{dataObj (Deprecated)
:{dataSubmitCancelled
Triggered when the default behavior of the beforeDataSubmit event is cancelled by calling the eventObj. preventDefault()
method.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart data as XML string
dataObj (Deprecated)
:{Chart data as XML string
Example
FusionCharts.addEventListener('beforeDataSubmit', function(eventObject, parameterObject) {
eventObject.preventDefault();
}
chartUpdated
Triggered every time the data on any of the interactive charts (select-scatter, drag-node, and the dragable charts) is updated by user interaction.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
dataObj
:{Chart ID
Event that caused the chartUpdated
event to be triggered. For example, in a drag-node chart, if a node was dragged to shift its position, the source event will be dataplotDragEnd
.
Type of element that triggered this event
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Index of the updated data plot, in the order of its definition in the source data
Index of the dataset, to which the updated data plot belongs, in the order of its definition in the source data
Name of the dataset, to which the updated data plot belongs
x-coordinate of the updated data plot
Applicable only to the drag-node chart.
y-coordinate of the updated data plot
Applicable only to the drag-node chart.
Shape of the updated data plot
Applicable only to the drag-node chart.
Width of the updated data plot
Applicable only to the drag-node chart.
Height of the updated data plot
Applicable only to the drag-node chart.
Radius of the updated data plot
Applicable only to the drag-node chart.
Number of sides the shape of the updated data plot has
Applicable only to the drag-node chart.
Data label of the updated data plot
Tooltip text for the updated data plot
dataObj (Deprecated)
:{Chart ID
Event that caused the chartUpdated
event to be triggered. For example, in a drag-node chart, if a node was dragged to shift its position, the source event will be dataplotDragEnd
.
Type of element that triggered this event
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Index of the updated data plot, in the order of its definition in the source data
Index of the dataset, to which the updated data plot belongs, in the order of its definition in the source data
Name of the dataset, to which the updated data plot belongs
x-coordinate of the updated data plot
Applicable only to the drag-node chart.
y-coordinate of the updated data plot
Applicable only to the drag-node chart.
Shape of the updated data plot
Applicable only to the drag-node chart.
Width of the updated data plot
Applicable only to the drag-node chart.
Height of the updated data plot
Applicable only to the drag-node chart.
Radius of the updated data plot
Applicable only to the drag-node chart.
Number of sides the shape of the updated data plot has
Applicable only to the drag-node chart.
Data label of the updated data plot
Tooltip text for the updated data plot
nodeAdded
Triggered when a new node is added to the drag-node chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Node ID
Index of the added node, in sequence in the order of the pre-defined nodes in the source data
Index of the dataset to which the new node is added
Name of the dataset to which the new node is added
URL to which the user will be redirected, if the node is clicked
x-coordinate of the added node
y-coordinate of the added node
Shape of the added node. Example : Rectangle, Circle, Polygon
Sets the width of the added node only if the shape
of the added node is rectangle.
Sets the height of the added node only if the shape
of the added node is rectangle.
Sets the radius of the added node only if the shape
of the added node is either circle or polygon.
Specifies the number of sides configured for the added node only if the shape
of the added node is polygon.
Text label for the added node
Text rendered when the mouse pointer is hovered over the added node
dataObj (Deprecated)
:{Node ID
Index of the added node, in sequence in the order of the pre-defined nodes in the source data
Index of the dataset to which the new node is added
Name of the dataset to which the new node is added
URL to which the user will be redirected, if the node is clicked
x-coordinate of the added node
y-coordinate of the added node
Shape of the added node
Width of the added node
Height of the added node
Radius of the added node
Number of sides configured for the added node
Text label for the added node
Text rendered when the mouse pointer is hovered over the added node
nodeUpdated
Triggered when a node on the drag-node chart is updated.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Node ID
Index of the updated node, in the order of its definition
Index of the dataset to which the updated node belongs
Name of the dataset to which the updated node belongs
URL to which the user will be redirected, if the node is clicked
x-coordinate of the updated node
y-coordinate of the updated node
Shape of the updated node. Example : Rectangle, Circle, Polygon
Sets the width of the updated node only if the shape
of the updated node is rectangle.
Sets the height of the updated node only if the shape
of the updated node is rectangle.
Sets the radius of the updated node only if the shape
of the updated node is either circle or polygon.
Specifies the number of sides configured for the updated node only if the shape
of the updated node is polygon.
Text label for the updated node
Text rendered when the mouse pointer is hovered over the updated node
dataObj (Deprecated)
:{Node ID
Index of the updated node, in the order of its definition
Index of the dataset to which the updated node belongs
Name of the dataset to which the updated node belongs
URL to which the user will be redirected, if the node is clicked
x-coordinate of the updated node
y-coordinate of the updated node
Shape of the updated node
Width of the updated node
Height of the updated node
Radius of the updated node
Number of sides of the updated node
Text label for the updated node
Text rendered when the mouse pointer is hovered over the updated node
nodeDeleted
Triggered when a node on the drag-node chart is deleted.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Node ID
Index of the deleted node, in the order of its definition
Index of the dataset to which the deleted node belongs
Name of the dataset to which the deleted node belongs
URL to which the user will be redirected, if the node is clicked
x-coordinate of the deleted node
y-coordinate of the deleted node
Shape of the deleted node. Example : Rectangle, Circle, Polygon
Sets the width of the deleted node only if the shape
of the deleted node is rectangle.
Sets the height of the deleted node only if the shape
of the deleted node is rectangle.
Sets the radius of the deleted node only if the shape
of the deleted node is either circle or polygon.
Specifies the number of sides configured for the deleted node only if the shape
of the deleted node is polygon.
Text label for the deleted node
Text rendered when the mouse pointer is hovered over the deleted node
dataObj (Deprecated)
:{Node ID
Index of the deleted node, in the order of its definition
Index of the dataset to which the deleted node belongs
Name of the dataset to which the deleted node belongs
URL to which the user will be redirected, if the node is clicked
x-coordinate of the deleted node
y-coordinate of the deleted node
Shape of the deleted node
Width of the deleted node
Height of the deleted node
Radius of the deleted node
Number of sides of the deleted node
Text label for the deleted node
Text rendered when the mouse pointer is hovered over the deleted node
connectorAdded
Triggered when a new connector is added to the drag-node chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Connector ID
Whether the connector has an arrow that points towards the source node
Whether the connector has an arrow that points towards the destination node
Index number or the node ID of the source node
Index number or the node ID of the destination node
Text label of the connector
URL to which the user will be redirected, if the connector is clicked
dataObj (Deprecated)
:{Connector ID
Whether the connector has an arrow that points towards the source node
Whether the connector has an arrow that points towards the destination node
Index number or the node ID of the source node
Index number or the node ID of the destination node
Text label of the connector
URL to which the user will be redirected, if the connector is clicked
connectorUpdated
Triggered when a connector on the drag-node chart is updated.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Connector ID
Whether the connector has an arrow that points towards the source node
Whether the connector has an arrow that points towards the destination node
Index number or the node ID of the source node
Index number or the node ID of the destination node
Text label of the connector
URL to which the user will be redirected, if the connector is clicked
dataObj (Deprecated)
:{Connector ID
Whether the connector has an arrow that points towards the source node
Whether the connector has an arrow that points towards the destination node
Index number or the node ID of the source node
Index number or the node ID of the destination node
Text label of the connector
URL to which the user will be redirected, if the connector is clicked
connectorDeleted
Triggered when a connector is deleted from the drag-node chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Connector ID
Whether the connector has an arrow that points towards the source node
Whether the connector has an arrow that points towards the destination node
Index number or the node ID of the source node
Index number or the node ID of the destination node
Text label of the connector
URL to which the user will be redirected, if the connector is clicked
dataObj (Deprecated)
:{Connector ID
Whether the connector has an arrow that points towards the source node
Whether the connector has an arrow that points towards the destination node
Index number or the node ID of the source node
Index number or the node ID of the destination node
Text label of the connector
URL to which the user will be redirected, if the connector is clicked
labelAdded
Triggered when a new label is added on the drag-node chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelAdded
event, this will be labelnode.
dataObj (Deprecated)
:{x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelAdded
event, this will be labelnode.
labelDeleted
Triggered when a label is deleted from the drag-node chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelDeleted
event, this will be labelnode.
dataObj (Deprecated)
:{x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelDeleted
event, this will be labelnode.
selectionRemoved
Triggered when the selection box, drawn on a select-scatter chart, is removed.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{ID of the selection box
Subset of the data selected using the selection box
Distance between the top edges of the selection box and the chart
Distance between the left edges of the selection box and the chart
Width of the selection box
Height of the selection box
Value of the starting position of the selection box, in the canvas x-axis
Value of the starting position of the selection box, in the canvas y-axis
Value of the ending position of the selection box, in the canvas x-axis
Value of the ending position of the selection box, in the canvas y-axis
dataObj (Deprecated)
:{ID of the selection box
Subset of the data selected using the selection box
Distance between the top edges of the selection box and the chart
Distance between the left edges of the selection box and the chart
Width of the selection box
Height of the selection box
Value of the starting position of the selection box, in the canvas x-axis
Value of the starting position of the selection box, in the canvas y-axis
Value of the ending position of the selection box, in the canvas x-axis
Value of the ending position of the selection box, in the canvas y-axis
selectionStart
Triggered when you start drawing a selection box on a select-scatter/zoom-scatter chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Distance between the top edges of the selection box and the chart
Distance between the left edges of the selection box and the chart
Width of the selection box (0 for this event, because it is triggered before you finish drawing the box)
Height of the selection box (0 for this event, because it is triggered before you finish drawing the box)
Value of the starting position of the selection box, in the canvas x-axis
Value of the starting position of the selection box, in the canvas y-axis
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Distance between the top edges of the selection box and the chart
Distance between the left edges of the selection box and the chart
Width of the selection box (0 for this event, because it is triggered before you finish drawing the box)
Height of the selection box (0 for this event, because it is triggered before you finish drawing the box)
Value of the starting position of the selection box, in the canvas x-axis
Value of the starting position of the selection box, in the canvas y-axis
selectionEnd
Triggered when you complete drawing a selection box on a select-scatter/zoom-scatter chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Distance between the top edges of the selection box and the chart
Distance between the left edges of the selection box and the chart
Width of the selection box
Height of the selection box
Value of the starting position of the selection box, in the canvas x-axis
Value of the starting position of the selection box, in the canvas y-axis
Value of the ending position of the selection box, in the canvas x-axis
Value of the ending position of the selection box, in the canvas y-axis
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Distance between the top edges of the selection box and the chart
Distance between the left edges of the selection box and the chart
Width of the selection box
Height of the selection box
Value of the starting position of the selection box, in the canvas x-axis
Value of the starting position of the selection box, in the canvas y-axis
Value of the ending position of the selection box, in the canvas x-axis
Value of the ending position of the selection box, in the canvas y-axis
labelClick
Triggered when a label on the drag-node chart is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected to, if the label is when clicked
Type of the element that triggered the event. For the labelClick
event, this will be labelnode.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected to, if the label is when clicked
Type of the element that triggered the event. For the labelClick
event, this will be labelnode.
labelRollOver
Triggered when the mouse pointer is rolled over a label on the drag-node chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelRollOver
event, this will be labelnode.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelRollOver
event, this will be labelnode.
labelRollOut
Triggered when the mouse pointer is rolled out of a label on the drag-node chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected to, if the label is clicked
Type of the element that triggered the event. For the labelRollOut
event, this will be labelnode.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected to, if the label is clicked
Type of the element that triggered the event. For the labelRollOut
event, this will be labelnode.
labelDragStart
Triggered when you start dragging a label on the drag-node chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelDragStart
event, this will be labelnode.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelDragStart
event, this will be labelnode.
labelDragEnd
Triggered when you finish dragging a label on the drag-node chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelDragEnd
event, this will be labelnode.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
x-coordinate of the label node, scaled as per the axis of the chart
y-coordinate of the label node, scaled as per the axis of the chart
Label text
Whether the label can be dragged or no
URL to which the user will be redirected, if the label is clicked
Type of the element that triggered the event. For the labelDragEnd
event, this will be labelnode.
dataplotDragStart
Triggered when you start dragging the data plots of the drag-able charts (the drag-node, drag-column, drag-line, and drag-area charts).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Position of the dataset in the order of its definition in the source data
Dataset to which the data plot belongs
Index of the data plot in the order of its definition in the dataset
Value of the data plot before it is dragged
Applicable only to the drag-column, drag-line, and drag-area charts
Sets the color of the plot.
Sets the transparency of the plot.
Sets the color of the plot border
Sets the transparency of the plot border
Sets the thickness of the plot border
Makes the plot border dashed.
Sets the color gradient of the plot.
Sets the color of the plot when it is hovered over.
Sets the transparency of the plot when it is hovered over.
Sets the color of the plot border when it is hovered over.
Sets the transparency of the plot border when it is hovered over.
dataObj (Deprecated)
:{Position of the dataset in the order of its definition in the source data
Dataset to which the data plot belongs
Index of the data plot in the order of its definition in the dataset
Value of the data plot before it is dragged
Applicable only to the drag-column, drag-line, and drag-area charts
dataplotDragEnd
Triggered when you complete dragging the data plots of the drag-able charts (the drag-node, drag-column, drag-line, and drag-area charts).
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Position of the dataset in the order of its definition in the source data
Dataset to which the data plot belongs
Index of the data plot in the order of its definition in the dataset
Value of the data plot before it is dragged
Applicable only to the drag-column, drag-line, and drag-area charts
Value of the data plot after it is dragged
Applicable only to the drag-column, drag-line, and drag-area charts
Sets the color of the plot.
Sets the transparency of the plot.
Sets the color of the plot border
Sets the transparency of the plot border
Sets the thickness of the plot border
Makes the plot border dashed.
Sets the color gradient of the plot.
Sets the color of the plot when it is hovered over.
Sets the transparency of the plot when it is hovered over.
Sets the color of the plot border when it is hovered over.
Sets the transparency of the plot border when it is hovered over.
dataObj (Deprecated)
:{Position of the dataset in the order of its definition in the source data
Dataset to which the data plot belongs
Index of the data plot in the order of its definition in the dataset
Value of the data plot before it is dragged
Applicable only to the drag-column, drag-line, and drag-area charts
Value of the data plot after it is dragged
Applicable only to the drag-column, drag-line, and drag-area charts
processClick
Triggered when a process in the Gantt chart is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Process ID
Process label
Set to true if the event was triggered by the process header
Horizontal alignment of the process label
Vertical alignment of the process label
URL to which the user will be redirected, if the process is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Process ID
Process label
Set to true if the event was triggered by the process header
Horizontal alignment of the process label
Vertical alignment of the process label
URL to which the user will be redirected, if the process is clicked
processRollOver
Triggered when the mouse pointer is rolled over a process on the Gantt chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Process ID
Process label
true if the event was triggered by the process header
Horizontal alignment of the process label
Vertical alignment of the process label
URL to which the user will be redirected, if the process is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Process ID
Process label
true if the event was triggered by the process header
Horizontal alignment of the process label
Vertical alignment of the process label
URL to which the user will be redirected, if the process is clicked
processRollOut
Triggered when the mouse pointer is rolled out from over a process on the Gantt chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Process ID
Process label
true if the event was triggered by the process header
Horizontal alignment of the process label
Vertical alignment of the process label
URL to which the user will be redirected, if the process is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Process ID
Process label
true if the event was triggered by the process header
Horizontal alignment of the process label
Vertical alignment of the process label
URL to which the user will be redirected, if the process is clicked
categoryClick
Triggered when a category on the Gantt chart is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Horizontal alignment of the category label
Vertical alignment of the category label
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL to which the user will be redirected, if the category is clicked
Category label text
dataObj (Deprecated)
:{Horizontal alignment of the category label
Vertical alignment of the category label
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL to which the user will be redirected, if the category is clicked
Category label text
categoryRollOver
Triggered when the mouse pointer is rolled over a category on the Gantt chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Horizontal alignment of the category label
Vertical alignment of the category label
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL to which the user will be redirected, if the category is clicked
Category label text
dataObj (Deprecated)
:{Horizontal alignment of the category label
Vertical alignment of the category label
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL to which the user will be redirected, if the category is clicked
Category label text
categoryRollOut
Triggered when the mouse pointer is rolled out of a category on the Gantt chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Horizontal alignment of the category label
Vertical alignment of the category label
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL to which the user will be redirected, if the category is clicked
Category label text
dataObj (Deprecated)
:{Horizontal alignment of the category label
Vertical alignment of the category label
x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
URL to which the user will be redirected, if the category is clicked
Category label text
milestoneClick
Triggered when a milestone on a Gantt chart is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Id of the task to which the milestone belongs
Milestone date
Number of sides defined for the milestone shape
Radius of the milestone shape
Text displayed when the mouse pointer is hovered over the milestone
URL to which the user will be redirected, if the milestone is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Id of the task to which the milestone belongs
Milestone date
Number of sides defined for the milestone shape
Radius of the milestone shape
Text displayed when the mouse pointer is hovered over the milestone
URL to which the user will be redirected, if the milestone is clicked
milestoneRollOver
Triggered when the mouse pointer is rolled over a milestone on a Gantt chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Id of the task to which the milestone belongs
Milestone date
Number of sides defined for the milestone shape
Radius of the milestone shape
Text displayed when the mouse pointer is hovered over the milestone
URL to which the user will be redirected, if the milestone is clicked
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Id of the task to which the milestone belongs
Milestone date
Number of sides defined for the milestone shape
Radius of the milestone shape
Text displayed when the mouse pointer is hovered over the milestone
URL to which the user will be redirected, if the milestone is clicked
milestoneRollOut
Triggered when the mouse pointer is rolled out from over a milestone on a Gantt chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Id of the task to which the milestone belongs
Milestone date
Number of sides defined for the milestone shape
Radius of the milestone shape
Text displayed when the mouse pointer is hovered over the milestone
URL to which the user will be redirected, if the milestone is clicked
dataObj Deprecated
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Id of the task to which the milestone belongs
Milestone date
Number of sides defined for the milestone shape
Radius of the milestone shape
Text displayed when the mouse pointer is hovered over the milestone
URL to which the user will be redirected, if the milestone is clicked
chartTypeChanged
Triggered when the chart type is explicitly changed by calling the chartType() method on a chart.
This event is not fired when a chart is rendered using the static render() method or the chart type is set for the first time (the type is not provided to the constructor on the first render) using the chartType() method. If the chart type provided as the parameter to the chartType() method is the same as the current chart type, again, this event will not be triggered. Similarly, the event is not triggered if the new chart type is invalid.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
chartTypeInvalid
Triggered when the given chart type is invalid or the chart type is not specified.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
overlayButtonClick
Triggered when the overlay back button on a linked chart is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{ID of the overlay button
Visibility status of the overlay button (true if shown, false if not)
Text rendered on the overlay button
Font color of the text rendered on the overlay button
Background color of the overlay button
Border color for the overlay button
dataObj (Deprecated)
:{ID of the overlay button
Visibility status of the overlay button (true if shown, false if not)
Text rendered on the overlay button
Font color of the text rendered on the overlay button
Background color of the overlay button
Border color for the overlay button
loaded
Triggered when the chart has finished downloading itself in the client environment. It indicates that the all the resources required to render the chart are ready and that the chart can be drawn. This event can be used to hide any loader components that you might have on your page.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Type of chart rendered
dataObj (Deprecated)
:{Type of chart rendered
rendered
Triggered when the chart completes drawing, after the render() or the chartType() method is called. The chart renders if the data provided is correct; otherwise, an error message from the list given here is rendered. A call to this event is made only once, even if new data may be supplied later. It can be used to invoke any further JavaScript methods on the chart or change chart data.
If chart animation is enabled, this event is triggered before the animation process. In case you need to perform any action after the animation has completed, you will need to add an appropriate time delay in this event handler, using
setTimeout
.
The default animation duration is 1000ms (one second). The animation duration can be customized using the
animationDuration
chart attribute.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
animationInvoked
Triggered when the animation is started in the chart.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Specifies the animation duration is milliseconds(ms).
beforedraw
Triggered when the chart is redrawn because of a data update, resize, change of chart message, or change of chart type.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
drawComplete
Triggered when the chart draws for the first time or is redrawn because of a data update, resize, change of chart message, or change of chart type.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{drawcancelled
Triggered when event.preventDefault()
is called from FusionCharts#event:beforeDraw.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
renderComplete
Triggered every time a chart is rendered using the render() method, the chartType() method, or the setChartData() method. It is also triggered every time chart data is successfully updated, which triggers a re-render internally.
The difference between this event and the rendered event is that the rendered
event is triggered only when the .render()
method is called.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{dataInvalid
Triggered when there is no chart data or data with parsing or fetching (from the server) errors is submitted to the chart.
Maps, real-time charts, and some gauges do not require initial data to begin with. In that case, this event is not triggered.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Error object passed to the event for debugging the JavaScript errors encountered
dataObj (Deprecated)
:{Error object passed to the event for debugging the JavaScript errors encountered
dataXMLInvalid (Deprecated)
Triggered if the chart data (passed to the chart object either by URL or as a string) is not in a usable format.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
dataLoaded
Triggered when the data for a chart (passed by url or as a string) is loaded to the chart object. It ensures that the data passed is valid and the chart can be rendered.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
noDataToDisplay
Triggered when no data is passed to the chart. It can be used to show an error message or take a corrective measure.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
legendPointerDragStart
Triggered when the user starts dragging the legend pointer of a gradient legend, in the heatmap chart and maps.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Index of the pointer dragged (0 for the starting pointer and 1 for the ending pointer)
Object containing the start and end value of the scale
Width, in pixels or percentage, of the pointer dragged
Height, in pixels or percentage, of the pointer dragged
dataObj (Deprecated)
:{Index of the pointer dragged (0 for the starting pointer and 1 for the ending pointer)
Object containing the start and end value of the scale
Width, in pixels or percentage, of the pointer dragged
Height, in pixels or percentage, of the pointer dragged
legendPointerDragStop
Triggered when the user completes dragging the legend pointer of a gradient legend, in the heatmap chart and maps.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Index of the pointer dragged (0 for the starting pointer and 1 for the ending pointer)
Object containing the start and end value of the scale
Width, in pixels or percentage, of the pointer dragged
Height, in pixels or percentage, of the pointer dragged
dataObj (Deprecated)
:{Index of the pointer dragged (0 for the starting pointer and 1 for the ending pointer)
Object containing the start and end value of the scale
Width, in pixels or percentage, of the pointer dragged
Height, in pixels or percentage, of the pointer dragged
legendRangeUpdated
Triggered when the range of a gradient legend, in the heat map chart and maps, is updated by dragging the legend pointers.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{alertComplete
Triggered when an alert, notifying the user that a real-time data value has crossed a pre-defined data threshold, is complete.
The
alertObj
object is available only when the event is defined at chart level.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
Example
//An Example of the JSON structure for alert
var my-chart-data = {
'chart': {
'palette': '4',
'lowerlimit': '-50',
'upperlimit': '10',
'numbersuffix': '° C'
},
'value': '-40',
'alerts': {
'alert': [
{
'minvalue': '5',
'maxvalue': '9',
'action': 'callJS',
'param': 'alert('Value between 5 and 9');'
},
{
'maxvalue': '10',
'action': 'showAnnotation',
'param': 'statusRed',
'occuronce': '0'
}
]
}
};
//Once this structure is defined for the chart data, the `addEventListener` can be used to
//listen to the `alertComplete` event .
//Creating a thermometer chart.
FusionCharts.addEventListener('ready', function () {
var chart = new FusionCharts({
id: 'thermometer'
type: 'thermometer',
renderAt: 'chart-container-div',
//The JSON as given above
dataSource: 'my-chart-data',
dataFormat: 'jsonurl'
}),
alertCount;
//rendering the chart to the div.
chart.render();
//Listening to the alertComplete event
chart.addEventListener('alertcomplete', function(){
alertCount++;
});
//Feeding data to trigger an alert.
chart.feedData(10);
});
//Refer to <a href='http://docs.fusioncharts.com/widgets/'>http://docs.fusioncharts.com/widgets/</a> for further infomation on alerts.
realTimeUpdateError
Triggered every time there is an error in updating chart data in real-time, using the dataStreamURL
attribute.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Source of the data load request, presently set to xmlHttpRequest
URL of the data source
Object that fetches the data
HTTP status number when the error was encountered. For example, the status number will be 404 for URL not found.
dataObj (Deprecated)
:{Source of the data load request, presently set to xmlHttpRequest
URL of the data source
Object that fetches the data
HTTP status number when the error was encountered. For example, the status number will be 404 for URL not found.
dataplotRollOver
Triggered when the mouse pointer is rolled over a data plot.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Data ID
Applicable on the:
- Drag-node Chart.
- Angular Gauge.
- Horizontal Linear Gauge.
Index of the data plot, in the order of its definition in the source data
Index of the dataset that the data plot belongs to, in the order of its definition in the source data
Name of the dataset that the data plot belongs to
URL to which the user will be redirected, if the data plot is clicked
Text displayed when the mouse pointer is hovered over the data plot
Value assigned to the data plot that triggered this event
Value assigned to the data plot that triggered this event
x-axis label corresponding to the data plot that triggered this event
Formatted value (for decimal places, suffixes, and so on) displayed for the data plot that triggered this event
x-coordinate of the data plot
Applicable to the:
- Bubble Chart.
- Drag-node chart.
- Candlestick.
y-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
z-coordinate of the data plot
Applicable to the bubble chart.
Shape of the data plot
Applicable to the drag-node chart.
Width of the data plot
Applicable to the drag-node chart.
Height of the data plot
Applicable to the drag-node chart.
Radius of the data plot
Applicable to the drag-node chart.
Number of sides the data plot shape has
Applicable to the drag-node chart.
Label text of the data plot
Applicable to the drag-node chart.
Type of element that triggered the event
Applicable to the drag-node chart.
true if the pie/doughnut slice (in the pie/doughnut chart) was sliced before the event was triggered
Applicable to the pie and doughnut charts.
Sets the color of the plot.
Applicable on the:
- Column chart and its variants.
- Line chart and its variants.
- Area Chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Bubble Chart.
- MultiLevel Pie Chart.
- Candlestick Chart.
- Heatmap Chart.
- Funnel Chart.
- Pyramid Chart.
- Horizontal Linear Gauge.
- Bulb.
- Drag Node Chart.
Sets the transparency of the plot.
Applicable on the:
- Column chart and its variants.
- Line chart and its variants. Area Chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Bubble Chart.
- MultiLevel Pie Chart.
- Candlestick Chart.
- Heatmap Chart.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the color of the plot border.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- MultiLevel Pie Chart.
- Candlestick Chart.
- Angular Gauge.
- Funnel Chart.
- Pyramid Chart.
- Horizontal Linear Gauge.
Sets the transparency of the plot border.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- MultiLevel Pie Chart.
- Angular Gauge.
- Funnel Chart.
- Pyramid Chart.
- Horizontal Linear Gauge.
Sets the thickness of the plot border.
Applicable on the:
- Column chart and its variants.
- MultiLevel Pie Chart.
- Angular Gauge.
- Horizontal Linear Gauge.
Makes the plot border dashed.
Applicable on the Column chart and its variants.
Sets the color gradient of the plot.
Applicable on the Column chart and its variants.
Sets the color of the plot when it is hovered over.
Applicable on the: -Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Scatter chart and its variants.
- Bubble Chart.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the transparency of the plot when it is hovered over.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Scatter chart and its variants.
- Bubble Chart.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the scale for enlargement of a plot when hovered over.
Applicable on the Bubble Charts
Sets the color of the plot border when it is hovered over.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the transparency of the plot border when it is hovered over.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the thickness of the plot border when it is hovered over.
Applicable on the:
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the background color of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the background transparency of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the transparency of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the color of the anchor border.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the thickness of the anchor border.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the radius of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the number of sides of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the starting angle of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the color of an anchor when it is hovered over.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the transparency of an anchor when it is hovered over.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the number of sides an anchor has when it is hovered over.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Makes the plot border dashed.
Applicable on the:
- Line & Area chart and their variants.
- Candlestick Chart.
Adjusts vertical alignment of data values with respect to data plots.
Applicable on the Line & Area chart and their variants.
Displays or hides data labels.
Applicable on the:
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- MultiLevel Pie Chart.
Displays or hides data values.
Applicable on the:
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Scatter chart and its variants.
- Heatmap Chart.
- BoxAndWhisker Chart.
- Angular Gauge.
- Funnel Chart.
- Pyramid Chart.
- Horizontal & Vertical Bullet Graph.
- Horizontal Linear Gauge.
Sets the font of the label of a plot slice.
Applicable on the Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
Sets the font color of the label of a plot slice.
Applicable on the Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
Links a label to a target object.
Applicable on the Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
Sets the position of a plot label.
Applicable on the Pie2D & Doughnut2D chart.
Makes a data plot 3D when hovered over.
Applicable on the Bubble Charts
Applies 3D lighting on a data plot when hovered over.
Applicable on the Bubble Charts
Sets the fill color of a data plot.
Applicable on the Treemap.
Sets the font color of a label text.
Applicable on the Treemap.
Show or hide a plot border.
Applicable on the:
- MultiLevel Pie Chart.
- Horizontal & Vertical Bullet Graph.
Sets the opening price for a set.
Applicable on the Candlestick Chart.
Sets the closing price for a set.
Applicable on the Candlestick Chart.
Sets the high price for a set.
Applicable on the Candlestick Chart.
Sets the low price for a set.
Applicable on the Candlestick Chart.
Sets the volume of transaction.
Applicable on the Candlestick Chart.
Sets the color range labels in hex code.
Applicable on the Heatmap Chart.
Sets the color of the upper quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the color of the upper quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the upper quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the lower quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the color of the upper quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the upper quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the lower quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the color of the upper whisker.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the upper whisker.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper whisker.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower whisker.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the lower whisker.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower whisker.
Applicable on the BoxAndWhisker Chart.
Specifies values greater than the maximum value in the set of data provided.
Applicable on the BoxAndWhisker Chart.
Width of the bottom part of the dial (the part connected to pivot).
Applicable on the Angular Gauge.
Sets the background color for the chart.
Applicable on the:
- Angular Gauge.
- Gantt Chart.
Sets the background transparency for the chart.
Applicable on the:
- Horizontal Linear Gauge.
- Gantt Chart.
Make a dial editable.
Applicable on the:
- Angular Gauge.
- Horizontal Linear Gauge.
Extends the dial beyond the pivot.
Applicable on the Angular Gauge.
Set the width of the top part of the dial.
Applicable on the Angular Gauge.
Sets the X-coordinate for the value textbox.
Applicable on the Angular Gauge.
Sets the Y-coordinate for the value textbox.
Applicable on the Angular Gauge.
Sets the radius of the vertices of the pivot end of the dial.
Applicable on the Angular Gauge.
Plots the value as dot or bar.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the width percentage of the color range that the plot fill bar should occupy.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the fill color of the plot bar.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the transparency of the plot bar.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the color of the plot border.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the thickness of the plot border.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the transparency of the plot border.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets a target line for the bullet.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the color of the target line.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the thickness of the target line.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the width percentage of the color range that the target fill bar should occupy.
Applicable on the Horizontal & Vertical Bullet Graph.
Specifies the shape for the ends of the target line.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the thermometer bulb radius.
Applicable on the Thermometer Gauge.
Sets the thermometer scale height.
Applicable on the Thermometer Gauge.
Sets the thermometer fill color.
Applicable on the Thermometer Gauge.
Sets the glass color of the thermometer.
Applicable on the Thermometer Gauge.
Sets the fill color of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the transparency of the thermometer gauge.
Applicable on the Thermometer Gauge.
Shows the border of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the border color of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the thickness of the border of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the transparency of the border of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the origin X-coordinate for the cylinder.
Applicable on the Cylinder Gauge.
Sets the origin Y-coordinate for the cylinder.
Applicable on the Cylinder Gauge.
Sets the radius of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the height of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the scale of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the fill color of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the glass color of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the font face of a label text.
Applicable on the Gantt Chart.
Sets the font size of a label text.
Applicable on the Gantt Chart.
Sets the alignment of a label text.
Applicable on the Gantt Chart.
Enables or disables dragging.
Applicable on the Drag Node Chart.
Defines the number of sides when node shape is set as polygon.
Applicable on the Drag Node Chart.
Assigns a GIF/JPG/PNG image to a node.
Applicable on the Drag Node Chart.
Sets the alignment of the GIF/JPG/PNG image assigned to a node.
Applicable on the Drag Node Chart.
Sets the width of the GIF/JPG/PNG image assigned to a node.
Applicable on the Drag Node Chart.
Sets the height of the GIF/JPG/PNG image assigned to a node.
Applicable on the Drag Node Chart.
Sets the vertical alignment of the label in a node.
Applicable on the Drag Node Chart.
Sets the height of a node when hovered over.
Applicable on the Drag Node Chart.
Sets the width of a node when hovered over.
Applicable on the Drag Node Chart.
Sets the radius of a node when hovered over.
Applicable on the Drag Node Chart.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Data ID (applicable only to the drag-node chart)
Index of the data plot, in the order of its definition in the source data
Index of the dataset that the data plot belongs to, in the order of its definition in the source data
Name of the dataset that the data plot belongs to
URL to which the user will be redirected, if the data plot is clicked
Text displayed when the mouse pointer is hovered over the data plot
Value assigned to the data plot that triggered this event
Value assigned to the data plot that triggered this event
x-axis label corresponding to the data plot that triggered this event
Formatted value (for decimal places, suffixes, and so on) displayed for the data plot that triggered this event
x-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
y-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
z-coordinate of the data plot
Applicable to the bubble chart.
Shape of the data plot
Applicable to the drag-node chart.
Width of the data plot
Applicable to the drag-node chart.
Height of the data plot
Applicable to the drag-node chart.
Radius of the data plot
Applicable to the drag-node chart.
Number of sides the data plot shape has
Applicable to the drag-node chart.
Label text of the data plot
Applicable to the drag-node chart.
Type of element that triggered the event
Applicable to the drag-node chart.
true if the pie/doughnut slice (in the pie/doughnut chart) was sliced before the event was triggered
Applicable to the pie and doughnut charts.
dataplotRollOut
Triggered when the mouse pointer is rolled out from over a data plot.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Data ID (applicable only to the drag-node chart)
Index of the data plot, in the order of its definition in the source data
Index of the dataset that the data plot belongs to, in the order of its definition in the source data
Name of the dataset that the data plot belongs to
URL, if configured, to which the user will be redirected
Text displayed when the mouse pointer is hovered over the data plot
Value assigned to the data plot that triggered this event
Value assigned to the data plot that triggered this event
x-axis label corresponding to the data plot that triggered this event
Formatted value (for decimal places, suffixes, and so on) displayed for the data plot that triggered this event
x-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
y-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
z-coordinate of the data plot
Applicable to the bubble chart.
Shape of the data plot
Applicable to the drag-node chart.
Width of the data plot
Applicable to the drag-node chart.
Height of the data plot
Applicable to the drag-node chart.
Radius of the data plot
Applicable to the drag-node chart.
Number of sides the data plot shape has
Applicable to the drag-node chart.
Label text of the data plot
Applicable to the drag-node chart.
Type of element that triggered the event
Applicable to the drag-node chart.
true if the pie/doughnut slice (in a pie/doughnut chart) was sliced before the event was triggered
Applicable to the pie and doughnut charts.
Sets the color of the plot.
Applicable on the:
- Column chart and its variants.
- Line chart and its variants.
- Area Chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Bubble Chart.
- MultiLevel Pie Chart.
- Candlestick Chart.
- Heatmap Chart.
- Funnel Chart.
- Pyramid Chart.
- Horizontal Linear Gauge.
- Bulb.
- Drag Node Chart.
Sets the transparency of the plot.
Applicable on the:
- Column chart and its variants.
- Line chart and its variants. Area Chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Bubble Chart.
- MultiLevel Pie Chart.
- Candlestick Chart.
- Heatmap Chart.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the color of the plot border.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- MultiLevel Pie Chart.
- Candlestick Chart.
- Angular Gauge.
- Funnel Chart.
- Pyramid Chart.
- Horizontal Linear Gauge.
Sets the transparency of the plot border.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- MultiLevel Pie Chart.
- Angular Gauge.
- Funnel Chart.
- Pyramid Chart.
- Horizontal Linear Gauge.
Sets the thickness of the plot border.
Applicable on the:
- Column chart and its variants.
- MultiLevel Pie Chart.
- Angular Gauge.
- Horizontal Linear Gauge.
Makes the plot border dashed.
Applicable on the Column chart and its variants.
Sets the color gradient of the plot.
Applicable on the Column chart and its variants.
Sets the color of the plot when it is hovered over.
Applicable on the: -Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Scatter chart and its variants.
- Bubble Chart.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the transparency of the plot when it is hovered over.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Scatter chart and its variants.
- Bubble Chart.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the scale for enlargement of a plot when hovered over.
Applicable on the Bubble Charts
Sets the color of the plot border when it is hovered over.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the transparency of the plot border when it is hovered over.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the thickness of the plot border when it is hovered over.
Applicable on the:
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the background color of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the background transparency of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the transparency of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the color of the anchor border.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the thickness of the anchor border.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the radius of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the number of sides of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the starting angle of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the color of an anchor when it is hovered over.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the transparency of an anchor when it is hovered over.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the number of sides an anchor has when it is hovered over.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Makes the plot border dashed.
Applicable on the:
- Line & Area chart and their variants.
- Candlestick Chart.
Adjusts vertical alignment of data values with respect to data plots.
Applicable on the Line & Area chart and their variants.
Displays or hides data labels.
Applicable on the:
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- MultiLevel Pie Chart.
Displays or hides data values.
Applicable on the:
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Scatter chart and its variants.
- Heatmap Chart.
- BoxAndWhisker Chart.
- Angular Gauge.
- Funnel Chart.
- Pyramid Chart.
- Horizontal & Vertical Bullet Graph.
- Horizontal Linear Gauge.
Sets the font of the label of a plot slice.
Applicable on the Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
Sets the font color of the label of a plot slice.
Applicable on the Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
Links a label to a target object.
Applicable on the Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
Sets the position of a plot label.
Applicable on the Pie2D & Doughnut2D chart.
Makes a data plot 3D when hovered over.
Applicable on the Bubble Charts
Applies 3D lighting on a data plot when hovered over.
Applicable on the Bubble Charts
Sets the fill color of a data plot.
Applicable on the Treemap.
Sets the font color of a label text.
Applicable on the Treemap.
Show or hide a plot border.
Applicable on the:
- MultiLevel Pie Chart.
- Horizontal & Vertical Bullet Graph.
Sets the opening price for a set.
Applicable on the Candlestick Chart.
Sets the closing price for a set.
Applicable on the Candlestick Chart.
Sets the high price for a set.
Applicable on the Candlestick Chart.
Sets the low price for a set.
Applicable on the Candlestick Chart.
Sets the volume of transaction.
Applicable on the Candlestick Chart.
Sets the color range labels in hex code.
Applicable on the Heatmap Chart.
Sets the color of the upper quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the color of the upper quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the upper quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the lower quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the color of the upper quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the upper quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the lower quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the color of the upper whisker.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the upper whisker.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper whisker.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower whisker.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the lower whisker.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower whisker.
Applicable on the BoxAndWhisker Chart.
Specifies values greater than the maximum value in the set of data provided.
Applicable on the BoxAndWhisker Chart.
Width of the bottom part of the dial (the part connected to pivot).
Applicable on the Angular Gauge.
Sets the background color for the chart.
Applicable on the:
- Angular Gauge.
- Gantt Chart.
Sets the background transparency for the chart.
Applicable on the:
- Horizontal Linear Gauge.
- Gantt Chart.
Make a dial editable.
Applicable on the:
- Angular Gauge.
- Horizontal Linear Gauge.
Extends the dial beyond the pivot.
Applicable on the Angular Gauge.
Set the width of the top part of the dial.
Applicable on the Angular Gauge.
Sets the X-coordinate for the value textbox.
Applicable on the Angular Gauge.
Sets the Y-coordinate for the value textbox.
Applicable on the Angular Gauge.
Sets the radius of the vertices of the pivot end of the dial.
Applicable on the Angular Gauge.
Plots the value as dot or bar.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the width percentage of the color range that the plot fill bar should occupy.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the fill color of the plot bar.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the transparency of the plot bar.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the color of the plot border.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the thickness of the plot border.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the transparency of the plot border.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets a target line for the bullet.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the color of the target line.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the thickness of the target line.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the width percentage of the color range that the target fill bar should occupy.
Applicable on the Horizontal & Vertical Bullet Graph.
Specifies the shape for the ends of the target line.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the thermometer bulb radius.
Applicable on the Thermometer Gauge.
Sets the thermometer scale height.
Applicable on the Thermometer Gauge.
Sets the thermometer fill color.
Applicable on the Thermometer Gauge.
Sets the glass color of the thermometer.
Applicable on the Thermometer Gauge.
Sets the fill color of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the transparency of the thermometer gauge.
Applicable on the Thermometer Gauge.
Shows the border of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the border color of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the thickness of the border of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the transparency of the border of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the origin X-coordinate for the cylinder.
Applicable on the Cylinder Gauge.
Sets the origin Y-coordinate for the cylinder.
Applicable on the Cylinder Gauge.
Sets the radius of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the height of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the scale of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the fill color of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the glass color of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the font face of a label text.
Applicable on the Gantt Chart.
Sets the font size of a label text.
Applicable on the Gantt Chart.
Sets the alignment of a label text.
Applicable on the Gantt Chart.
Enables or disables dragging.
Applicable on the Drag Node Chart.
Defines the number of sides when node shape is set as polygon.
Applicable on the Drag Node Chart.
Assigns a GIF/JPG/PNG image to a node.
Applicable on the Drag Node Chart.
Sets the alignment of the GIF/JPG/PNG image assigned to a node.
Applicable on the Drag Node Chart.
Sets the width of the GIF/JPG/PNG image assigned to a node.
Applicable on the Drag Node Chart.
Sets the height of the GIF/JPG/PNG image assigned to a node.
Applicable on the Drag Node Chart.
Sets the vertical alignment of the label in a node.
Applicable on the Drag Node Chart.
Sets the height of a node when hovered over.
Applicable on the Drag Node Chart.
Sets the width of a node when hovered over.
Applicable on the Drag Node Chart.
Sets the radius of a node when hovered over.
Applicable on the Drag Node Chart.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Data ID (applicable only to the drag-node chart)
Index of the data plot, in the order of its definition in the source data
Index of the dataset that the data plot belongs to, in the order of its definition in the source data
Name of the dataset that the data plot belongs to
URL, if configured, to which the user will be redirected
Text displayed when the mouse pointer is hovered over the data plot
Value assigned to the data plot that triggered this event
Value assigned to the data plot that triggered this event
x-axis label corresponding to the data plot that triggered this event
Formatted value (for decimal places, suffixes, and so on) displayed for the data plot that triggered this event
x-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
y-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
z-coordinate of the data plot
Applicable to the bubble chart.
Shape of the data plot
Applicable to the drag-node chart.
Width of the data plot
Applicable to the drag-node chart.
Height of the data plot
Applicable to the drag-node chart.
Radius of the data plot
Applicable to the drag-node chart.
Number of sides the data plot shape has
Applicable to the drag-node chart.
Label text of the data plot
Applicable to the drag-node chart.
Type of element that triggered the event
Applicable to the drag-node chart.
true if the pie/doughnut slice (in a pie/doughnut chart) was sliced before the event was triggered
Applicable to the pie and doughnut charts.
dataplotClick
Triggered when a data plot is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Data ID (applicable only to the drag-node chart)
Index of the data plot, in the order of its definition in the source data
Index of the dataset that the data plot belongs to, in the order of its definition in the source data
Name of the dataset that the data plot belongs to
URL to which the user will be redirected, if the data plot is clicked
Text displayed when the mouse pointer is hovered over the data plot
Value assigned to the data plot that triggered this event
Value assigned to the data plot that triggered this event
x-axis label corresponding to the data plot that triggered this event
Formatted value (for decimal places, suffixes, and so on) displayed for the data plot that triggered this event
x-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
y-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
z-coordinate of the data plot
Applicable to the bubble chart.
Shape of the data plot
Applicable to the drag-node chart.
Width of the data plot
Applicable to the drag-node chart.
Height of the data plot
Applicable to the drag-node chart.
Radius of the data plot
Applicable to the drag-node chart.
Number of sides the data plot shape has
Applicable to the drag-node chart.
Label text of the data plot
Applicable to the drag-node chart.
Type of element that triggered the event
Applicable to the drag-node chart.
true if the pie/doughnut slice (in a pie/doughnut chart) was sliced before the event was triggered
Applicable to the pie and doughnut charts.
Sets the color of the plot.
Applicable on the:
- Column chart and its variants.
- Line chart and its variants.
- Area Chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Bubble Chart.
- MultiLevel Pie Chart.
- Candlestick Chart.
- Heatmap Chart.
- Funnel Chart.
- Pyramid Chart.
- Horizontal Linear Gauge.
- Bulb.
- Drag Node Chart.
Sets the transparency of the plot.
Applicable on the:
- Column chart and its variants.
- Line chart and its variants. Area Chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Bubble Chart.
- MultiLevel Pie Chart.
- Candlestick Chart.
- Heatmap Chart.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the color of the plot border.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- MultiLevel Pie Chart.
- Candlestick Chart.
- Angular Gauge.
- Funnel Chart.
- Pyramid Chart.
- Horizontal Linear Gauge.
Sets the transparency of the plot border.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- MultiLevel Pie Chart.
- Angular Gauge.
- Funnel Chart.
- Pyramid Chart.
- Horizontal Linear Gauge.
Sets the thickness of the plot border.
Applicable on the:
- Column chart and its variants.
- MultiLevel Pie Chart.
- Angular Gauge.
- Horizontal Linear Gauge.
Makes the plot border dashed.
Applicable on the Column chart and its variants.
Sets the color gradient of the plot.
Applicable on the Column chart and its variants.
Sets the color of the plot when it is hovered over.
Applicable on the: -Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Scatter chart and its variants.
- Bubble Chart.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the transparency of the plot when it is hovered over.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Scatter chart and its variants.
- Bubble Chart.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the scale for enlargement of a plot when hovered over.
Applicable on the Bubble Charts
Sets the color of the plot border when it is hovered over.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the transparency of the plot border when it is hovered over.
Applicable on the:
- Column chart and its variants.
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the thickness of the plot border when it is hovered over.
Applicable on the:
- Funnel Chart.
- Pyramid Chart.
- Drag Node Chart.
Sets the background color of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the background transparency of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the transparency of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the color of the anchor border.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the thickness of the anchor border.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the radius of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the number of sides of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the starting angle of an anchor.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the color of an anchor when it is hovered over.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the transparency of an anchor when it is hovered over.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Sets the number of sides an anchor has when it is hovered over.
Applicable on the:
- Line & Area chart and their variants.
- Scatter chart and its variants.
Makes the plot border dashed.
Applicable on the:
- Line & Area chart and their variants.
- Candlestick Chart.
Adjusts vertical alignment of data values with respect to data plots.
Applicable on the Line & Area chart and their variants.
Displays or hides data labels.
Applicable on the:
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- MultiLevel Pie Chart.
Displays or hides data values.
Applicable on the:
- Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
- Scatter chart and its variants.
- Heatmap Chart.
- BoxAndWhisker Chart.
- Angular Gauge.
- Funnel Chart.
- Pyramid Chart.
- Horizontal & Vertical Bullet Graph.
- Horizontal Linear Gauge.
Sets the font of the label of a plot slice.
Applicable on the Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
Sets the font color of the label of a plot slice.
Applicable on the Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
Links a label to a target object.
Applicable on the Pie2D, Pie3D & Doughnut2D, Doughnut3D charts.
Sets the position of a plot label.
Applicable on the Pie2D & Doughnut2D chart.
Makes a data plot 3D when hovered over.
Applicable on the Bubble Charts
Applies 3D lighting on a data plot when hovered over.
Applicable on the Bubble Charts
Sets the fill color of a data plot.
Applicable on the Treemap.
Sets the font color of a label text.
Applicable on the Treemap.
Show or hide a plot border.
Applicable on the:
- MultiLevel Pie Chart.
- Horizontal & Vertical Bullet Graph.
Sets the opening price for a set.
Applicable on the Candlestick Chart.
Sets the closing price for a set.
Applicable on the Candlestick Chart.
Sets the high price for a set.
Applicable on the Candlestick Chart.
Sets the low price for a set.
Applicable on the Candlestick Chart.
Sets the volume of transaction.
Applicable on the Candlestick Chart.
Sets the color range labels in hex code.
Applicable on the Heatmap Chart.
Sets the color of the upper quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower quartile box.
Applicable on the BoxAndWhisker Chart.
Sets the color of the upper quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the upper quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the lower quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower quartile line.
Applicable on the BoxAndWhisker Chart.
Sets the color of the upper quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the upper quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the lower quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower quartile box border.
Applicable on the BoxAndWhisker Chart.
Sets the color of the upper whisker.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the upper whisker.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the upper whisker.
Applicable on the BoxAndWhisker Chart.
Sets the color of the lower whisker.
Applicable on the BoxAndWhisker Chart.
Sets the thickness of the lower whisker.
Applicable on the BoxAndWhisker Chart.
Sets the transparency of the lower whisker.
Applicable on the BoxAndWhisker Chart.
Specifies values greater than the maximum value in the set of data provided.
Applicable on the BoxAndWhisker Chart.
Width of the bottom part of the dial (the part connected to pivot).
Applicable on the Angular Gauge.
Sets the background color for the chart.
Applicable on the:
- Angular Gauge.
- Gantt Chart.
Sets the background transparency for the chart.
Applicable on the:
- Horizontal Linear Gauge.
- Gantt Chart.
Make a dial editable.
Applicable on the:
- Angular Gauge.
- Horizontal Linear Gauge.
Extends the dial beyond the pivot.
Applicable on the Angular Gauge.
Set the width of the top part of the dial.
Applicable on the Angular Gauge.
Sets the X-coordinate for the value textbox.
Applicable on the Angular Gauge.
Sets the Y-coordinate for the value textbox.
Applicable on the Angular Gauge.
Sets the radius of the vertices of the pivot end of the dial.
Applicable on the Angular Gauge.
Plots the value as dot or bar.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the width percentage of the color range that the plot fill bar should occupy.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the fill color of the plot bar.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the transparency of the plot bar.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the color of the plot border.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the thickness of the plot border.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the transparency of the plot border.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets a target line for the bullet.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the color of the target line.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the thickness of the target line.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the width percentage of the color range that the target fill bar should occupy.
Applicable on the Horizontal & Vertical Bullet Graph.
Specifies the shape for the ends of the target line.
Applicable on the Horizontal & Vertical Bullet Graph.
Sets the thermometer bulb radius.
Applicable on the Thermometer Gauge.
Sets the thermometer scale height.
Applicable on the Thermometer Gauge.
Sets the thermometer fill color.
Applicable on the Thermometer Gauge.
Sets the glass color of the thermometer.
Applicable on the Thermometer Gauge.
Sets the fill color of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the transparency of the thermometer gauge.
Applicable on the Thermometer Gauge.
Shows the border of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the border color of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the thickness of the border of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the transparency of the border of the thermometer gauge.
Applicable on the Thermometer Gauge.
Sets the origin X-coordinate for the cylinder.
Applicable on the Cylinder Gauge.
Sets the origin Y-coordinate for the cylinder.
Applicable on the Cylinder Gauge.
Sets the radius of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the height of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the scale of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the fill color of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the glass color of the cylinder gauge.
Applicable on the Cylinder Gauge.
Sets the font face of a label text.
Applicable on the Gantt Chart.
Sets the font size of a label text.
Applicable on the Gantt Chart.
Sets the alignment of a label text.
Applicable on the Gantt Chart.
Enables or disables dragging.
Applicable on the Drag Node Chart.
Defines the number of sides when node shape is set as polygon.
Applicable on the Drag Node Chart.
Assigns a GIF/JPG/PNG image to a node.
Applicable on the Drag Node Chart.
Sets the alignment of the GIF/JPG/PNG image assigned to a node.
Applicable on the Drag Node Chart.
Sets the width of the GIF/JPG/PNG image assigned to a node.
Applicable on the Drag Node Chart.
Sets the height of the GIF/JPG/PNG image assigned to a node.
Applicable on the Drag Node Chart.
Sets the vertical alignment of the label in a node.
Applicable on the Drag Node Chart.
Sets the height of a node when hovered over.
Applicable on the Drag Node Chart.
Sets the width of a node when hovered over.
Applicable on the Drag Node Chart.
Sets the radius of a node when hovered over.
Applicable on the Drag Node Chart.
dataObj (Deprecated)
:{x-coordinate of the pointer, relative to the chart
y-coordinate of the pointer, relative to the chart
x-coordinate of the pointer, relative to the page
y-coordinate of the pointer, relative to the page
Data ID (applicable only to the drag-node chart)
Index of the data plot, in the order of its definition in the source data
Index of the dataset that the data plot belongs to, in the order of its definition in the source data
Name of the dataset that the data plot belongs to
URL to which the user will be redirected, if the data plot is clicked
Text displayed when the mouse pointer is hovered over the data plot
Value assigned to the data plot that triggered this event
Value assigned to the data plot that triggered this event
x-axis label corresponding to the data plot that triggered this event
Formatted value (for decimal places, suffixes, and so on) displayed for the data plot that triggered this event
x-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
y-coordinate of the data plot
Applicable to the bubble chart and drag-node chart.
z-coordinate of the data plot
Applicable to the bubble chart.
Shape of the data plot
Applicable to the drag-node chart.
Width of the data plot
Applicable to the drag-node chart.
Height of the data plot
Applicable to the drag-node chart.
Radius of the data plot
Applicable to the drag-node chart.
Number of sides the data plot shape has
Applicable to the drag-node chart.
Label text of the data plot
Applicable to the drag-node chart.
Type of element that triggered the event
Applicable to the drag-node chart.
true if the pie/doughnut slice (in a pie/doughnut chart) was sliced before the event was triggered
Applicable to the pie and doughnut charts.
linkClicked
Triggered when any chart element made clickable, by configuring a link, is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{beforeRender
Triggered before a chart is to be rendered. Calling the eventObject.preventDefault()
method on this event will cancel the rendering process. The rendering process is triggered when the render() method is called on the chart instance.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Example
// Listening using global events
FusionCharts.addEventListener('beforeRender', function (eventObj, argsObj) {
// Prints id of the chart being rendered
console.log("Chart with id " + eventObj.sender.id + " is about to be rendered.");
});
// Pass event listener in the FusionCharts constructor
var mychart = new FusionCharts({
"type": "column2d",
"dataFormat": "json",
"dataSource": {
...
},
// Attach event handlers
"events": {
// Attach to beforeRender
"beforeRender": function (eventObj, argsObj) {
console.log("Beginning render of " + eventObj.sender.id);
}
}
});
renderCancelled
Triggered when the default behavior of the beforeRender event is cancelled using the eventObj.preventDefault()
method.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Example
// Listening using global events
FusionCharts.addEventListener('renderCancelled', function (eventObj, argsObj) {
// Prints id of the chart whose rendering was cancelled
console.log("Rendering of chart with id " + eventObj.sender.id + " was cancelled.");
});
// Pass event listener in the FusionCharts constructor
var mychart = new FusionCharts({
"type": "column2d",
"dataFormat": "json",
"dataSource": {
...
},
// Attach event handlers
"events": {
// Attach to renderCancelled
"renderCancelled": function (eventObj, argsObj) {
console.log("Cancelled rendering of " + eventObj.sender.id);
}
}
});
beforeResize
Triggered before a chart is resized.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Chart width, before resize, in pixels or percentage
Chart height, before resize, in pixels or percentage
Chart width, after resize, in pixels or percentage
Chart height, after resize, in pixels or percentage
dataObj (Deprecated)
:{Chart width, before resize, in pixels or percentage
Chart height, before resize, in pixels or percentage
Chart width, after resize, in pixels or percentage
Chart height, after resize, in pixels or percentage
resized
Triggered when a chart is resized either by calling the resizeTo() method or by changing dimensions of the chart container element, when the dimensions are in the percentage format.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{id
String
Chart ID
Chart height, after resize
Chart width, before resize
Chart height, before resize
Chart width, when the chart was first rendered
Chart height, when the chart was first rendered
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
dataObj (Deprecated)
:{Chart width, after resize
Chart height, after resize
Chart width, before resize
Chart height, before resize
Chart width, when the chart was first rendered
Chart height, when the chart was first rendered
Width of the DOM element, in pixels, used to render the chart
Height of the DOM element, in pixels, used to render the chart
resizeCancelled
Triggered when the eventObj.preventDefault()
method is called from within the beforeResize event. This cancels the instructions received from the resizeTo() method.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{Current chart width, in pixels or percentage
Current chart height, in pixels or percentage
Chart width requested to be set but cancelled
Chart height requested to be set but cancelled
dataObj (Deprecated)
:{Current chart width, in pixels or percentage
Current chart height, in pixels or percentage
Chart width requested to be set but cancelled
Chart height requested to be set but cancelled
beforeDispose
Triggered before a chart is deleted and cleaned from memory.
Usually, this event is triggered by the dispose() method. It is internally raised when an already rendered chart is re-rendered or a child chart in LinkedCharts is closed.
Unused charts should be disposed to avoid memory-leaks within an application or dashboard.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
disposed
Triggered when a chart is deleted and cleaned from memory.
Usually, this event is triggered by the dispose() method. It is internally raised when an already rendered chart is re-rendered or a child chart in LinkedCharts is closed.
Unused charts should be disposed to avoid memory-leaks within an application or dashboard.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
disposeCancelled
Triggered when the default behaviour of the beforeDispose event is cancelled using the eventObj.preventDefault()
method.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
linkedChartInvoked
Triggered just before a linked chart is rendered (before the rendered event is triggered for the linked chart), after the parent link is clicked.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{beforeDrillDown
Triggered just before the treemap chart is rendered when it is drilled down to a child node
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{drillDown
Triggered just after the treemap chart is rendered when it is drilled down to a child node
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{dataObj (Deprecated)
:{The node clicked
Instance of the FusionCharts object that fired this event
Indicates whether the showParent
attribute is enabled or not
Function to drill up to the immediate parent node
Function to drill up to the root node
beforeDrillUp
Triggered just before the treemap chart is rendered when it is drilled up to the immediate parent or the root node
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{drillUp
Triggered just after the treemap chart is rendered when it is drilled up to the immediate parent or the root node
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{The node clicked
Instance of the FusionCharts object that fired this event
Indicates whether the showParent
attribute is enabled or not
Function to drill up to the immediate parent node
Function to drill up to the root node
dataObj (Deprecated)
:{The node clicked
Instance of the FusionCharts object that fired this event
Indicates whether the showParent
attribute is enabled or not
Function to drill up to the immediate parent node
Function to drill up to the root node
drillDownCancelled
Triggered when the beforeDrillDown
is interrupted (by the stopPropagation()
method)
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{drillUpCancelled
Triggered when the beforeDrillUp
is interrupted (by the stopPropagation()
method)
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{onChangeCrossLine
Triggered after you hide the crossline at runtime when the chart plots are not hovered. This event is fired when the mouse is placed outside the chart canvas.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.
data
:{containerNotFound
Triggered if the container is either not found or not provided after invoking render API.
Parameters
eventObj
:{Type (name) of the event triggered
Unique ID associated with the event. Internally, it is an incrementing counter that can also be used to verify the order in which the event was triggered.
Instance of the FusionCharts object that fired this event. Events that are fired by the framework (and not by individual charts) have the framework as this property.
Boolean attribute that indicates whether an event's propagation was cancelled; set to true when eventObj.stopPropagation()
is called.
Function called from within a listener to prevent subsequent listeners from being executed.
Boolean attribute that indicates whether the default action of the event was prevented; set to true when eventObj.preventDefault()
is called.
Function to prevent the default action of an event. For example, if the eventObj.preventDefault()
function is called for the beforeResize event, the chart will not be resized and the resizeCancelled event will be triggered.
Boolean attribute that indicates whether a listener has been detached and will no longer be executed; set to true when eventObj.detachHandler() is called
Function to allow the listener to remove itself rather than being called externally by the removeEventListener() method. It is useful for one-time event listening or for special situations when the event is no longer required to be listened when it has been triggered with a specific condition.