Flexmonster Software License Agreement (“Agreement”) has been revised and is effective as of January 7, 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 7, 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.
A flat table is a form of Flexmonster Pivot that displays raw data in an Excel-like data grid view.
import React from "react"; import * as FlexmonsterReact from "react-flexmonster"; class PivotTableDemo extends React.Component { render() { return ( <> <div className="App"> <FlexmonsterReact.Pivot componentFolder="https://cdn.flexmonster.com/" height={370} report={{ dataSource: { type: "csv", filename: "data/data.csv", }, options: { grid: { type: "flat", }, }, slice: { columns: [ { uniqueName: "Country", }, { uniqueName: "Category", }, { uniqueName: "Color", }, { uniqueName: "Price", }, { uniqueName: "Discount", }, ], }, formats: [ { name: "", thousandsSeparator: ",", decimalSeparator: ".", decimalPlaces: 2, currencySymbol: "$", }, ], }} /> </div> </> ); } } export default PivotTableDemo;
This neat non-hierarchical React grid view lets end users show CSV and JSON data in a way that data come from the data source - nonaggregated values, row-by-row .
Though the way of displaying data is different, the features of the flat grid are the same as for other layouts. Via the Field List, an end-user can define slice and configuration, order, filter, and sort data. It is also possible to show grand totals of the measures and put them at the top row of the table.
Multi-column sorting makes this form distinct from others: use Ctrl
+ click (Command
+ click on macOS) to sort the records by multiple fields.
To quickly change the view angle of your report, you can switch to the classic (tabular) or compact forms.