Dashboard Builder is a PHP library based data driven visualization & business analysis tool, a machine learning delivers insights, written in PHP with an added layer of drag-and-drop flexibility that aids in predicting the future with ease and no code required.
Dashboard Builder is a PHP library based data driven visualization & business analytic tool, a machine learning delivers insights, written in PHP with an added layer of drag-and-drop flexibility which helps predicting the future with ease and no code required.
Dashboard Builder generates PHP and Universal HTML code for your dashboard and integrate it seamlessly into any web application written in PHP or any PHP frameworks like Wordpress, Laravel, CodeIgniter, Joomla and other.
PHP Version 7.2 or later
Apache 2 or later, Nginx or any other Servcers support PHP
Windows 7 or later /Linux 3 or later/Ubuntu or any other platforms support Apache, Nginx etc.
Firefox 52, Chrome 57, IE 8, or any other Browsers support SVG
Via Composer
composer require dashboardbuilder/dashboardbuilder.net
Via Git
git clone https://github.com/DashboardBuilder/dashboardbuilder.net
INSTALLER
<script src="assets/js/dashboard.min.js"></script> <! -- copy this file to assets/js folder -- > <link rel="stylesheet" href="css/bootstrap.min.css"> <! -- Bootstrap CSS file, change the path accordingly -- >
Update include path where you place “inc/dashboard_dist.php”. (if changed)
Include(“inc/dashboard_dist.php");
Refer ‘Getting Started’ section on https://dashboardbuilder.net/php-dashboard for more details.
Refer ‘Support’ on https://dashboardbuilder.net/support for queries and support.
Reference Data Visualization Tool on https://dashboardbuilder.net/data-visualization for exploring definition, examples, procedure, techniques, and elements.
Must read and agree LICENSE.txt before use.
<?php /** * DashboardBuilder * * @author Diginix Technologies www.diginixtech.com * Support <[email protected]> - https://www.dashboardbuilder.net * @copyright (C) 2017 Dashboardbuilder.net * @version 2.1.0 * @license: license.txt */ include("inc/dashboard_dist.php"); // copy this file to inc folder // for chart #1 $data = new dashboardbuilder(); $data->type = "line"; $data->source = "Database"; $data->rdbms = "sqlite"; $data->servername = ""; $data->username = ""; $data->password = ""; $data->dbname = "dataNorthwind.db"; $data->xaxisSQL[0]= "SELECT strftime(^%Y-%m^,o.orderdate) as xaxis, sum(d.quantity) as yaxis from `order details` d, orders o where o.orderid = d.orderid group by strftime(^%Y-%m^,o.orderdate) limit 50"; $data->xaxisCol[0]= "xaxis"; $data->yaxisSQL[0]= "SELECT strftime(^%Y-%m^,o.orderdate) as xaxis, sum(d.quantity) as yaxis from `order details` d, orders o where o.orderid = d.orderid group by strftime(^%Y-%m^,o.orderdate) limit 50"; $data->yaxisCol[0]= "yaxis"; $data->name = "col1"; $data->title = "my title"; $data->xaxistitle = "x-axis title"; $data->yaxistitle = "y-axis title"; $result[1] = $data->result();?> <!DOCTYPE html> <html> <head> <script src="assets/js/dashboard.min.js"></script> <!-- copy this file to assets/js folder --> <link rel="stylesheet" href="css/bootstrap.min.css"> <!-- Bootstrap CSS file, change the path accordingly --> <style> <!-- adjust the height width as per your need -->; /* #col0{ height:350px; } #col1{ height:350px; } */ </style> </head> <body> <div class="container"> <div class="col-lg-12"> <div class="panel panel-default"> <div class="panel-heading"></div> <div class="panel-body"> <?php echo $result[1];?> </div> </div> </div> </div> </body>