<?
require('chart.php');
require(
'data.php');

$chart = new chart(300, 200, "example18");
$chart->plot($data, false, "red", "gradient", "black", 3);
$chart->plot($data, false, "red", "gradient", "black", 1);
$chart->stroke();
?>