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 tutorial describes how to connect Flexmonster Data Server used as a Windows/Unix service to your data. Server configurations vary depending on the data source type: database, JSON, or CSV.
If they are not already installed, complete the following guide: Installing Flexmonster Data Server as a Windows/Unix service.
Flexmonster Data Server supports the following databases: MySQL, MariaDB, Microsoft SQL Server, Microsoft Azure SQL, PostgreSQL, and Oracle.
To connect to a database with Flexmonster Data Server, open Flexmonster Admin Panel and go to Indexes > Add New Index. Then fill in the Name, Type, Database type, Connection string, and Query fields:
"index-database"
is a dataset identifier. It will be used to configure the data source in Flexmonster Pivot.
When the index configuration is complete, click Create. The index will be automatically added to your index pool.
Learn more about connecting to a database with the Data Server in our detailed guides:
To connect to JSON with Flexmonster Data Server, open Flexmonster Admin Panel and go to Indexes > Add New Index. Then fill in the Name, Type, and Path to file fields:
"index-json"
is a dataset identifier. It will be used to configure the data source in Flexmonster Pivot.
When the index configuration is complete, click Create. The index will be automatically added to your index pool.
Learn more about connecting to JSON with the Data Server in our detailed guide: Connecting to JSON using Flexmonster Data Server.
To connect to CSV with Flexmonster Data Server, open Flexmonster Admin Panel and go to Indexes > Add New Index. Then fill in the Name, Type, and Path to file fields. Also, specify Delimiter, Decimal separator, and Thousands separator if non-default characters are used in your CSV file:
"index-csv"
is a dataset identifier. It will be used to configure the data source in Flexmonster Pivot.
When the index configuration is complete, click Create. The index will be automatically added to your index pool.
Learn more about connecting to CSV with the Data Server in our detailed guide: Connecting to CSV using Flexmonster Data Server.
In Flexmonster Pivot, the report should be configured as follows:
const pivot = new Flexmonster({
container: "pivotContainer",
report: {
dataSource: {
type: "api",
url: "http://localhost:9500",
index: "index-json"
}
}
});
Note The index
must match the name of the index defined when configuring Flexmonster Data Server (e.g., "index‑json"
).
If your data contains non-Latin characters, ensure you have set UTF-8 encoding for your data and page. This is required to display the data correctly in the component.
When Flexmonster Pivot requests data, Flexmonster Data Server sends a response and then caches it. If the component sends the same request again, the server responds with the data from its cache.
The Data Server’s cache has a limit. When the cache does not have enough space for a new response, the Data Server deletes one of the previously cached responses. You can manage the cache size via the Cache size limit configuration.
The Data Server clears the cache when restarted.