amorphis
Gebruiker
- Lid geworden
- 4 dec 2002
- Berichten
- 122
Ik heb een PHP classe gedownload van deze locatie http://www.phpfreakz.nl. En gebruik deze code om een grafiek te maken.
Als ik dit op een blanke pagina doe werkt alles perfect en staat de grafiek er.
Als ik deze code echter in mijn html include krijg ik de headers already send error... iemand een oplossing?
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\index.php:7)
Bedankt!
Amorphis
Als ik dit op een blanke pagina doe werkt alles perfect en staat de grafiek er.
Als ik deze code echter in mijn html include krijg ik de headers already send error... iemand een oplossing?
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\index.php:7)
PHP:
<?PHP
require("classgraph.php");
$gewicht = array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16);
$lengte = array(5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80);
$graph = new classgraph("Groeigrafiek", GRPC_LINE);
$graph->set_size(500, 500);
$graph->set_data("16,1,0", array($gewicht, $lengte)); // set data for the chart, xdata will be array(1,2.5,4,5.5,...)
$graph->set_legend(array('Gewicht [Kg]','Lengte [cm]'), 2); // show a legend with some values and a font size of 2
$graph->set_range(0, 15, 0, 85); // set window to [0, 12] x [0, 40]
$graph->set_grid(1,1,1,5); // show x and y grid, x grid spacing = 1, y grid spacing = 5
$graph->set_axis(1,1); // show x and y axes
$graph->set_color('area', array(-1, -1, -1)); // transparent background
$graph->set_color('legend', array(205, 230, 225)); // greenish legend
$graph->set_color('val0', array(200,0,0)); // dark red color for first data serie, second is default, blue
$graph->set_marker(0, GRPC_SQUARE, 2); // marker (lijnnummer) / figuur square triangle / grootte
$graph->set_marker(1, GRPC_SQUARE, 2); // set marker for data serie 1 to a triangle
$graph->create();
$graph->set_output_format("png");
$graph->output();
?>
Bedankt!
Amorphis
Laatst bewerkt: