PHP Version 5.6 or later
Apache 2 or later
Windows 7 or later /Linux 3 or later
Firefox 52, Chrome 57, IE 8
INSTALLER .........
- Extract the product archive in web root. e.g. www.dashboarduilder
- Open it in browser to run installer. e.g. http://localhost/ dashboarduilder
- For integration in your app, you need to copy the PHP code to your php application.
- 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 -- >
-
Update include path where you place “inc/dashboard_dist.php”. (if changed)
Include(“inc/dashboard_dist.php"); Refer 'Getting Started' section on https://www.dashboardbuilder.net/documentation for more details.
Refer 'Support' on https://www.dashboardbuilder.net/support for queries and support.
/**
* DashboardBuilder
*
* @author Diginix Technologies www .diginixtech .com
* Support <support @ dashboardbuider.net> - http: // www. dashboardbuilder .net
* @copyright (C) 2017 Dashboardbuilder.net
* @version 1.0.1
* @license: license.txt
*/
include("inc/dashboard_dist.php"); // copy this file to inc folder
// for chart #1
$data = new dashboardbuilder();
$data->type = "map";
$data->source = "Database";
$data->rdbms = "sqlite";
$data->servername = "";
$data->username = "";
$data->password = "";
$data->dbname = "data\country.db";
$data->xaxisSQL[0]= "SELECT CODE FROM GDP";
$data->xaxisCol[0]= "CODE";
$data->yaxisSQL[0]= "SELECT GDP FROM GDP";
$data->yaxisCol[0]= "GDP";
$data->textSQL[0]= "SELECT COUNTRY FROM GDP";
$data->textCol[0]= "COUNTRY";
$data->name = "map";
$data->title = "";
$data->orientation = "";
$data->xaxistitle = "";
$data->yaxistitle = "";
$data->showgrid = "";
$data->showline = "";
$data->height = "";
$data->width = "";
$result[0] = $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="assets/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[0];?>
</div>
</div>
</div>
</div>
</body>
Must read and agree LICENSE.txt before use.
