stimulsoft / dashboards-php
Stimulsoft Dashboards.PHP
2025.1.1
2024-12-13 12:11 UTC
Requires
- php: >=7.0
- ext-json: *
- ext-mbstring: *
- ext-zlib: *
- phpmailer/phpmailer: ^6.6
- stimulsoft/reports-php: 2025.1.1
Suggests
- ext-interbase: *
- ext-mssql: *
- ext-mysqli: *
- ext-oci8: *
- ext-odbc: *
- ext-pdo: *
- ext-pgsql: *
- ext-sqlsrv: *
- dev-master
- 2025.1.1
- 2024.4.5
- 2024.4.4
- 2024.4.3
- 2024.4.2
- 2024.4.1
- 2024.3.6
- 2024.3.5
- 2024.3.4
- 2024.3.3
- 2024.3.2
- 2024.3.1
- 2024.2.6
- 2024.2.5
- 2024.2.4
- 2024.2.3
- 2024.2.2
- 2024.2.1
- 2024.1.4
- 2024.1.3
- 2024.1.2
- 2024.1.1
- 2023.4.4
- 2023.4.3
- 2023.4.2
- 2023.4.1
- 2023.3.4
- 2023.3.3
- 2023.3.2
- 2023.3.1
- 2023.2.8
- 2023.2.7
- 2023.2.6
- 2023.2.5
- 2023.2.4
- 2023.2.3
- 2023.2.2
- 2023.2.1
- 2023.1.8
- 2023.1.7
- 2023.1.6
- 2023.1.5
- 2023.1.4
- 2023.1.3
- 2023.1.2
- 2023.1.1
- 2022.4.5
- 2022.4.4
This package is auto-updated.
Last update: 2024-12-13 12:12:34 UTC
README
Stimulsoft Dashboards.PHP is a complete software package for designing and viewing dashboards. You may use the tool for integration into your applications or as a standalone solution. At the same time, no complex configuration or third-party modules are required. You may easily integrate dashboards into almost any PHP application, including those built on the Laravel framework.
Installation
You can add the necessary libraries using the command:
composer require stimulsoft/dashboards-php
Usage
To work with the dashboard viewer, use the following code:
<?php require_once 'vendor/autoload.php'; use Stimulsoft\Report\StiReport; use Stimulsoft\Viewer\StiViewer; $viewer = new StiViewer(); $viewer->process(); $report = new StiReport(); $report->loadFile('reports/SimpleDashboard.mrt'); $viewer->report = $report; $viewer->printHtml(); ?>
To work with the dashboard designer, use the following code:
<?php require_once 'vendor/autoload.php'; use Stimulsoft\Report\StiReport; use Stimulsoft\Designer\StiDesigner; $designer = new StiDesigner(); $designer->process(); $report = new StiReport(); $report->loadFile('reports/SimpleDashboard.mrt'); $designer->report = $report; $designer->printHtml(); ?>
These code examples are basic. There are many features, options, and other variations. For details, see our examples and documentation. For more details, please see our examples and documentation.