Flexmonster Software License Agreement (“Agreement”) has been significantly revised and is effective as of September 30, 2024.
The following modifications were made:
The modified version of Flexmonster Software License Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after September 30, 2024, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Flexmonster Software License Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license under License Model or Maintenance after the effective date of any modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
[starting from version: 2.8]
It is triggered when the drill-through view is opened. To know when the drill-through view is closed, use the drillthroughclose
event.
Parameter/Type | Description |
---|---|
data CellDataObject | ChartDataObject | Information about the object opened in the drill-through view. If the drill-through view is opened on the grid, this is a CellDataObject containing information about the cell. If the drill-through view is opened on charts, this is a ChartDataObject containing information about the chart segment. |
pivot.on('drillthroughopen', function (cell) {
alert("The drill-through view is opened for the cell - row: "
+ cell.rowIndex + ", column: "
+ cell.columnIndex
+ ", label: "
+ cell.label);
});
pivot.on('drillthroughopen', function(chart) {
alert("The drill-through view is opened for the chart segment with label: "
+ chart.label + ", measure: "
+ chart.measure.uniqueName
+ ", value: "
+ chart.value);
});
pivot.on('drillthroughopen', function(data) {
if (pivot.getOptions().viewType == "grid"){
alert("The drill-through view is opened for the cell - row: "
+ data.rowIndex + ", column: "
+ data.columnIndex
+ ", label: "
+ data.label);
}
else if (pivot.getOptions().viewType == "charts") {
alert("The drill-through view is opened for the chart segment with label: "
+ data.label + ", measure: "
+ data.measure.uniqueName
+ ", value: "
+ data.value);
}
});