Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stimulsoft/stimulsoft.dashboards.php
Dashboards.PHP is a complete software package for designing and viewing dashboards. Includes the JS data analysis engine, dashboard designer and viewer. Support PHP 5, PHP 7, and PHP 8 versions.
https://github.com/stimulsoft/stimulsoft.dashboards.php
charts dashboard-builder dashboards data-analysis data-grid data-visualization datatable dynamic-dashboard interactive-dashboards live-data mysql-data php php-bi-tools php-dashboard php-kpi php7 php8 pivot-tables sql-datasources statistics
Last synced: 7 days ago
JSON representation
Dashboards.PHP is a complete software package for designing and viewing dashboards. Includes the JS data analysis engine, dashboard designer and viewer. Support PHP 5, PHP 7, and PHP 8 versions.
- Host: GitHub
- URL: https://github.com/stimulsoft/stimulsoft.dashboards.php
- Owner: stimulsoft
- License: other
- Created: 2022-11-11T11:57:20.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-28T09:24:39.000Z (10 days ago)
- Last Synced: 2025-01-28T10:28:07.667Z (10 days ago)
- Topics: charts, dashboard-builder, dashboards, data-analysis, data-grid, data-visualization, datatable, dynamic-dashboard, interactive-dashboards, live-data, mysql-data, php, php-bi-tools, php-dashboard, php-kpi, php7, php8, pivot-tables, sql-datasources, statistics
- Language: PHP
- Homepage: https://www.stimulsoft.com/en/products/dashboards-php
- Size: 8.68 MB
- Stars: 4
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Stimulsoft Dashboards.PHP
#### 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
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
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](https://github.com/stimulsoft/Samples-Dashboards.PHP) and [documentation](https://www.stimulsoft.com/en/documentation/online/programming-manual/reports_and_dashboards_for_php.htm).
# Useful links:
* [Live Demo](http://demo.stimulsoft.com/#Js)
* [Product Page](https://www.stimulsoft.com/en/products/dashboards-php)
* [Sample Projects](https://github.com/stimulsoft/Samples-Dashboards.PHP)
* [Documentation](https://www.stimulsoft.com/en/documentation/online/programming-manual/reports_and_dashboards_for_php.htm)
* [Free Download](https://www.stimulsoft.com/en/downloads)
* [License](LICENSE.md)