Documentation Home
Examples
Pie Charts
Overview
Customizing the chart
Function Reference
Examples
Line & Bar Graphs
Overview
Adding data
Customizing the bars
Customizing the axes
Function Reference
Support
Installation
Version History
Technical Support
Previous: bar_example3.example.phpNext: bar_axis_negative5.example.php

Example Chart: bar_example1.example.php

<?php
  include( 'chartlogix.inc.php' );
 
  $chart = new BarChart();
 
  $chart->setTitle( 'This is a bar chart' );
 
  $chart->addColumns( array('Jan','Feb','Mar','Apr','May') );
 
  $chart->doBarSeries( 'Sales', 'FFCC00' );
  $chart->addData( 'Jan', 191 );
  $chart->addData( 'Feb', 217 );
  $chart->addData( 'Mar', 178 );
  $chart->addData( 'Apr', 263 );
  $chart->addData( 'May', 321 );
 
  $chart->drawPNG( 500, 400 );
Home  |  Online Store  |  Documentation  |  ChartLogix Features  |  Terms & Conditions Copyright © 2024 CubeLogix Ltd