Flexmonster Software License Agreement (“Agreement”) has been revised and is effective as of January 8, 2025.
The following modifications were made:
The modified version of Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after January 8, 2025, constitutes Licensee’s acceptance of the terms and conditions of the modified version of 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 or maintenance after the effective date of these modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
setReport(report: ReportObject)
Sets a report to be displayed in the component. Use this method to load and show previously saved reports.
Parameter/Type | Description |
---|---|
report ReportObject | Describes the report and contains all its properties. |
1) Set report:
<script src="flexmonster/flexmonster.js"></script>
<button onclick="setReport()">Set report</button>
<div id="pivotContainer">The component will appear here</div>
<script>
const pivot = new Flexmonster({
container: "pivotContainer",
});
function setReport() {
let report = {
dataSource: {
filename: "https://cdn.flexmonster.com/data/data.csv"
}
}
pivot.setReport(report);
}
</script>
Open the example on JSFiddle.
2) Swap two reports:
<script src="flexmonster/flexmonster.js"></script>
<button onclick="swapReports()">Swap reports</button>
<div id="firstPivotContainer">The component will appear here</div>
<div id="secondPivotContainer">The component will appear here</div>
<script>
const pivot1 = new Flexmonster({
container: "firstPivotContainer",
toolbar: true,
report: {
dataSource: {
filename: "data1.csv"
}
}
});
const pivot2 = new Flexmonster({
container: "secondPivotContainer",
toolbar: true,
report: {
dataSource: {
filename: "data2.csv"
}
}
});
function swapReports() {
const report1 = pivot1.getReport();
const report2 = pivot2.getReport();
pivot1.setReport(report2);
pivot2.setReport(report1);
}
</script>
Open on JSFiddle.
getReport
shareReport
ReportObject
open
load
save
Save and restore the report