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.
This guide shows how to switch between Flexmonster layouts and describes their differences.
By default, Flexmonster displays data in the compact form. You can also use the classic pivot table and the flat table to analyze data from different angles.
Flexmonster also provides built-in interactive charts. Learn more in the Flexmonster Pivot Charts guide.
Step 1. Select Options () on the Toolbar. As a result, the Layout options pop-up window will appear.
Step 2. In the pop-up window, choose the layout from the Layout section.
Step 3. Select the APPLY button to see the changes.
To predefine a grid layout in the report, specify the options.grid.type property:
report: {
dataSource: {
filename: "data/data.csv"
},
options: {
grid: {
type: "classic",
}
}
};
To change the grid layout at runtime, use the setOptions() method. Your code should look similar to the following:
pivot.setOptions({
viewType: "grid",
grid: {
type: "classic"
}
});
pivot.refresh();
In Flexmonster, data is displayed in the compact form by default. Learn how this layout works:
Check out our compact form live demo.
The classic pivot table layout is for users who prefer an Excel-like layout of fields. See the key features of the classic layout:
Note The header area is frozen and can not be scrolled. If your report contains many expanded fields or deep multilevel hierarchies in rows, the frozen area may occupy too much space, and the values may not be visible:
Such a configuration may complicate the work with Flexmonster, so we recommend using the compact form.
See the classic view demo.
The flat table represents the dataset in its original structure. It is the most basic layout. Check out the key characteristics of the flat view:
Check out our live demo with a flat table.
Note Since the flat table displays non-aggregated data, performance may decrease when connecting to large datasets. In such cases, consider switching to the compact or classic (tabular) pivot layout.