Phpplot

pessoal eu já trabalhei com php plot porem estou tento um problema agora, quando abro o arquivo no navegador nao aparece nada fica em branco alguém tem ideia do que pode ser? segue o código teste

[code]<?php

include( ‘phplot.php’ );

$array = array(

array( ‘a’, 1 ),

array( ‘b’, 3 ),

array( ‘c’, 2 ),

array( ‘d’, 7 ),

array( ‘e’, 6 ),

array( ‘f’, 9 )

);

$plot = new PHPlot( 800, 600 );

$plot->SetImageBorderType( ‘plain’ );

$plot->SetPlotType( ‘lines’ );

$plot->SetDataType( ‘text-data’ );

$plot->SetDataValues( $array );

$plot->SetTitle( ‘Posição angular vs Tempo’ );

$plot->SetXTitle( ‘Tempo’ );

$plot->SetBackgroundColor( ‘white’ );

$plot->SetLegend( array( ‘temp’ ) );

$plot->SetXTickLabelPos( ‘none’ );

$plot->SetXTickPos( ‘none’ );

$plot->DrawGraph( );

?>
[/code]