5.17. Example - Thin Bar Line Plot, Wider Lines

This is the same as the previous plot type (Example 5.16, “Thin Bar Line”) except the lines are wider. This now looks more like a bar chart.

Example 5.17. Thin Bar Line Plot, Wider Lines

Wider Thin Bar Line Plot Example
<?php
# PHPlot Example: thinbarline plot, wider
require_once 'phplot.php';

# To get repeatable results with 'random' data:
mt_srand(1);

# Make some noisy data:
$data = array();
for ($i = 0; $i < 100; $i++)
  $data[] = array('', $i / 4.0 + 2.0 + mt_rand(-20, 20) / 10.0);

$plot = new PHPlot(800, 600);
$plot->SetImageBorderType('plain');

$plot->SetPlotType('thinbarline');
$plot->SetDataType('text-data');
$plot->SetDataValues($data);

# Main plot title:
$plot->SetTitle('Noisy Data (thinbarline, wider)');

# Make the lines wider:
$plot->SetLineWidths(3);

$plot->DrawGraph();

SourceForge.net Logo

This version of the manual was produced for the PHPlot Sourceforge project web service site, which requires the logo on each page.

To download a logo-free copy of the manual, see the PHPlot project downloads area.