PHP Classes

File: test_line.php

Recommend this page to a friend!
  Classes of Eugene Panin   Graph   test_line.php   Download  
File: test_line.php
Role: Example script
Content type: text/plain
Description: Test script for Linechart
Class: Graph
Author: By
Last change:
Date: 23 years ago
Size: 490 bytes
 

Contents

Class file image Download
<?
require "Color.php";
require
"Graph.php";
require
"Linechart.php";

$white = new Color(255,255,255);
$blue = new Color(0,0,255);
$red = new Color(255,0,0);
$green = new Color(0,255,0);

$line = new Linechart(200,200,$white);

$ar1 = array(12,13,16,2,5,10,0,1,2,8);
$ar2 = array(20,13,-1,2,23,11,1,3,4,9);
$ar3 = array(11,15,20,12,6,-10,28,30,10,0);

$line->addArray($ar1, $white);
$line->addArray($ar2, $green);
$line->addArray($ar3, $red);
$line->printHTML();

?>