The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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.