Your IP : 3.139.93.168


Current Path : /home/lentoinv/churchmr.com/user/chart/demos/basic/
Upload File :
Current File : //home/lentoinv/churchmr.com/user/chart/demos/basic/meter.php

<!DOCTYPE html>
<html>
	<head>
		<script src="../../lib/js/jquery.min.js"></script>
		<script src="../../lib/js/chartphp.js"></script>
		<link rel="stylesheet" href="../../lib/js/chartphp.css">
	</head>
	<body>
		<div style="width:40%; min-width:450px;">
		<?php
/**
 * Charts 4 PHP
 *
 * @author Shani <support@chartphp.com> - http://www.chartphp.com
 * @version 1.2.1
 * @license: see license.txt included in package
 */
 
include("../../lib/inc/chartphp_dist.php");

$p = new chartphp();
$da = '510';
$p->data = array(array($da));
$p->intervals = array(200,300,400,800,1400);
$p->chart_type = "meter";

// Common Options
$p->title = "Meter Gauge Chart";

$out = $p->render('c1');
?>	<?php echo $out; ?>
		</div>
	</body>
</html>



?>