Overview Description & Features

Income Expenses
January 1000 600
February 800 200
March 510 700
April 110 500
May 900 400
Yearly
Overview

The CSSMiniCharts library contains 2 php functions:

  • lwtMiniVerticalBarChart
    Example on the right for each row
  • lwtMiniHorizontalBarChart
    Example in the last row

You can use these functions to display quick summary statistics in tables or even inline within the your paragraph text.

The functions render these charts using only html and css.


Examples How to use these functions

There are same of the ways you can use CSSMiniChars:

lwtMiniHorizontalBarChart(
  array(
   'blue' => 90,
   'white' => 40,
   'red' => 20
  ),
  array(
   'width' => 300,
   'height' => 40
  )
);
lwtMiniVerticalBarChart(
  array(10, 20, 30, 40, 50, 60, 40, 30, 20, 10),
  array(
   'width' => 300,
   'height' => 40
  )
);