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.
Your report can be printed directly from Flexmonster via the OS print manager.
In Flexmonster, you can also save, export, or share your report.
Step 1. Open a view that you want to print. It can be one of the following:
"grid_charts"
or by calling the showGridAndCharts method.Step 2. Select Export > Print on the Toolbar to print the view:
This will open the OS print manager from where you can start printing.
Note If you start printing in the drill-through view, the current grid, chart, or grid and charts view will be printed instead.
To print the report programmatically, use the print() API call:
pivot.print();
This will open the OS print manager from where you can start printing Live example.
The print()
API call also has an optional options parameter that can contain the following properties:
Here is an example with the header
and footer
properties:
const options = {
header:"<div>##CURRENT-DATE##</div>",
footer:"<div>##PAGE-NUMBER##</div>"
};
pivot.print(options);