PHP Classes

File: 3dbargraph.php

Recommend this page to a friend!
  Classes of Diogo Resende   CGraph   3dbargraph.php   Download  
File: 3dbargraph.php
Role: Example script
Content type: text/plain
Description: loads the definition of a 3D bar graph
Class: CGraph
Draw pie charts, bar, line graphs from definitions
Author: By
Last change:
Date: 20 years ago
Size: 152 bytes
 

Contents

Class file image Download
<?php
 
include "../class.3dbargraph.php";

 
$graph = new Graph();
 
$graph->LoadGraph(realpath("./3dbargraph.def"));
 
$graph->DrawGraph();
?>