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::ChartDirector - Graphing widget which displays graphs and charts for web applications using the ChartDirector graphing library within the App-Context Framework

SYNOPSIS

$name = "first_name";

# official way
use App;
$context = App->context();
$w = $context->widget($name);
# OR ...
$w = $context->widget($name,
   class => "App::Widget::ChartDirector",
);

# internal way
use App::Widget::ChartDirector;
$w = App::Widget::ChartDirector->new($name);

DESCRIPTION

A graphing widget which displays graphs and charts for web applications using the ChartDirector graphing library within the App-Context/App-Widget widget framework.