Hallo,
ist es möglich phplot auch mit smarty zu verwenden?
Habs so mal versucht, leider ohne erfolg. Die eigendliche Seite wird dann nicht mehr angezeigt sondern nur das Diagram m
Alles anzeigen
Hat da jemand eine Idee?
ist es möglich phplot auch mit smarty zu verwenden?
Habs so mal versucht, leider ohne erfolg. Die eigendliche Seite wird dann nicht mehr angezeigt sondern nur das Diagram m
Quellcode
- require_once 'phplot.php';
- $plot = new PHPlot(800, 600);
- $plot->SetImageBorderType('plain');
- $plot->SetPlotType('bars');
- $plot->SetDataType('text-data');
- $plot->SetDataValues($data);
- $plot->SetTitle("World's Most Populous Countries\n2005 Population in Millions");
- # Turn off X tick labels and ticks because they don't apply here:
- $plot->SetXTickLabelPos('none');
- $plot->SetXTickPos('none');
- # Make sure Y=0 is displayed:
- $plot->SetPlotAreaWorld(NULL, 0);
- # Y Tick marks are off, but Y Tick Increment also controls the Y grid lines:
- $plot->SetYTickIncrement(100);
- # Turn on Y data labels:
- $plot->SetYDataLabelPos('plotin');
- # With Y data labels, we don't need Y ticks or their labels, so turn them off.
- $plot->SetYTickLabelPos('none');
- $plot->SetYTickPos('none');
- # Format the Y Data Labels as numbers with 1 decimal place.
- # Note that this automatically calls SetYLabelType('data').
- $plot->SetPrecisionY(1);
- $plot->DrawGraph();
- $smarty->assign("graph",$plot->DrawGraph());
Hat da jemand eine Idee?