Dashboardbuilder.net

Build your Dashboard in a minute, No programming skills required.
Alternatives To Dashboardbuilder.net
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Apexcharts.js12,3573772603 days ago188August 22, 2022262mitJavaScript
📊 Interactive JavaScript Charts built on SVG
Vizzu Lib1,670
2 days ago15July 14, 202225apache-2.0JavaScript
Library for animated data visualizations and data stories.
Chronograf1,41213 days ago43April 01, 202229otherTypeScript
Open source monitoring and visualization UI for the TICK stack
Insights99112a year ago71February 23, 202066mitJavaScript
Open Source Self-Hosted Business Intelligence Platform
Esp Dash771
19 days ago12gpl-3.0C++
Blazing fast library to create a functional dashboard for ESP8266 and ESP32
Gdash767
3 years ago27apache-2.0CSS
A dashboard for Graphite
Grafterm759
9 months ago1December 04, 20198apache-2.0Go
Metrics dashboards on terminal (a grafana inspired terminal version)
Ipython Dashboard635
43 years ago6January 01, 201621gpl-2.0Python
A stand alone, light-weight web server for building, sharing graphs created in ipython. Build for data science, data analysis guys. Aiming at building an interactive visualization, collaborated dashboard, and real-time streaming graph.
Krane579
5 days ago32apache-2.0Ruby
Kubernetes RBAC static analysis & visualisation tool
Grafana Dash Gen429152 months ago14September 24, 20207mitJavaScript
grafana dash dash dash gen
Alternatives To Dashboardbuilder.net
Select To Compare


Alternative Project Comparisons
Readme

DESCRIPTION

Dashboard Builder is a PHP liberary based data driven visualization & business analtyc 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.

Dashbaord 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.

REQUIREMENTS

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

INSTALLATION

Via Composer

composer require dashboardbuilder/dashboardbuilder.net

INSTALLER

  1. Download https://github.com/DashboardBuilder/dashboardbuilder.net/releases
  2. Extract the product archive in web root. e.g.your-folder
  3. Open it in browser to run installer. e.g. localhost/dashboarduilder

INTEGRATION

  • For integration in your app, you need to copy the PHP code to your php application.
  1. The folder "inc", “assets” and “css” will be replaced by path where you place 'lib' folder (if changed)
 <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 -- >
  1. 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.

LICENSE

Must read and agree LICENSE.txt before use.

RESULT

PHP CODE

<?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>
Popular Dashboard Projects
Popular Graph Projects
Popular Web User Interface Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Php
Graph
Dashboard
Chart
Installer
Data Visualization
Data Analysis
Business Intelligence