#!C:/perl/bin/perl.exe use CGI::Carp qw(fatalsToBrowser); use CGI; $query = new CGI; print $query->header; print $query->start_html(-title=>'flot Demo'); print " "; print "

Here we are borrowing on the first two examples from the flot demo page to discuss further some of the various graphing features of flot. This is an illustration of a bar graph for a 2x2 design.

"; # Create via CSS a section of the page that will contain the graph. We'll call this a # 'placeholder' for simplicity. # Note that we can set the dimensions of this placeholder and doing so will set the dimensions of our # graph. # Note also that we have to "escape" certain sysmbols, such as $ via \$ print "
"; print ""; print $query->end_html;