The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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.