NAME
App::Widget::Graph - A graph for displaying data using HTML tables for bar graphs
SYNOPSIS
$name = "first_name";
# official way
use App;
$context = App->context();
$w = $context->widget($name);
# OR ...
$w = $context->widget($name,
class => "App::Widget::Graph",
);
# internal way
use App::Widget::Graph;
$w = App::Widget::Graph->new($name);
DESCRIPTION
A graph for displaying data using HTML tables for bar graphs.