stimulsoft / dashboards-php
Stimulsoft Dashboards.PHP
2024.4.1
2024-10-09 07:43 UTC
Requires
- php: >=5.6
- ext-json: *
- ext-mbstring: *
- ext-zlib: *
- phpmailer/phpmailer: ^6.6
- stimulsoft/reports-php: 2024.4.1
Suggests
- ext-interbase: *
- ext-mssql: *
- ext-mysqli: *
- ext-oci8: *
- ext-odbc: *
- ext-pdo: *
- ext-pgsql: *
- ext-sqlsrv: *
- dev-master
- 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-10-09 07:43:15 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.
Installation
The product is distributed using the Composer repository. You can add the necessary libraries using the command:
composer require stimulsoft/dashboards-php
Usage
Add the minimum required code to the page:
<?php require_once 'vendor/autoload.php'; ?>
Render the necessary scripts in the <head>
section
<head> <?php $js = new \Stimulsoft\StiJavaScript(\Stimulsoft\StiComponentType::Viewer); $js->renderHtml(); ?> </head>
Create and render a request handler in the <script>
section of the page:
<script> <?php $handler = new \Stimulsoft\StiHandler(); $handler->renderHtml(); ?> </script>
Create and render the component in the <script>
section of the page:
<script> <?php $viewer = new \Stimulsoft\Viewer\StiViewer(); $report = new \Stimulsoft\Report\StiReport(); $report->loadFile('reports/SimpleDashboard.mrt'); $viewer->report = $report; $viewer->renderHtml(); ?> </script>