use DBIx::Chart;
use DBI qw(:sql_types);
$|=1;
$^W=1;
BEGIN { $tests = 46 }
print "1..$tests\n";
use constant PI => 3.1415926;
$dbh = DBIx::Chart->connect('dbi:CSV:', undef, undef, { PrintError => 0, RaiseError => 0 } );
#
# test colormap adjustments
#
$dbh->do("update chart.colormap set redvalue=255, greenvalue=0, bluevalue=0
where name='red'");
$dbh->do("update chart.colormap set redvalue=0, greenvalue=0, bluevalue=255
where name='blue'");
$dbh->do("insert into chart.colormap values('newcolor', 124, 37, 97)");
my @x = ( 10, 20, 30, 40, 50);
my @y1 = ( 23, -39, 102, 67, 80);
my @y2 = ( 53, 39, 127, 89, 108);
my @y3 = ( 35, 45, 55, 65, 75);
my @xtmstamp = ( '2002-12-24 10:33:00', '2002-12-24 13:33:06',
'2002-12-24 17:20:00', '2002-12-25 00:13:34', '2002-12-25 04:44:44');
my @xdate = ( '2002-12-24', '2002-12-25', '2002-12-26', '2002-12-27', '2002-12-28');
my @ytime = ( '0:12:34', '11:29:00', '5:57:33', '22:22:22', '4:06:01');
my @xdate2 = ( '1970-01-24', '1975-01-25', '1985-01-26', '1997-01-27', '2030-01-28');
my @ytime2 = ( '0:12:34', '11:29:00', '255:57:33', '2222:22:22', '4328:06:01');
my @xbox = ();
my @xfreq = ();
my @yfreq = ();
my %xbhash = ();
my @z = qw (Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4);
my @x3d = qw(North North North North
East East East East South South South South West West West West);
my @y3d = (
123, 354, 987, 455,
346, 978, 294, 777,
765, 99, 222, 409,
687, 233, 555, 650);
open(HTMLF, ">t/plottest.html");
print HTMLF "
| Chart | Rendering SQL |
 |
select * from simpline
returning linegraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Linegraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND SHOWGRID=1
AND LINEWIDTH=4
AND MAPNAME='simpline'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLOR='newcolor'
AND SHAPE='fillcircle'
AND SHOWVALUES=1
|
 |
select * from simpline
returning pointgraph(x,y), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Scattergraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND SHOWGRID=0
AND MAPNAME='simpscat'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND SHOWVALUES=1
|
 |
select * from simpline
returning areagraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Areagraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND SHOWGRID=1
AND MAPNAME='simparea'
AND COLOR='newcolor'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND SHOWVALUES=0
|
 |
select * from symline
returning linegraph(*), imagemap
where WIDTH=500 AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Symbolic Domain Linegraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND SHOWGRID=1
AND MAPNAME='symline'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND COLOR=newcolor AND SHAPE=fillcircle
|
 |
select * from symline
returning barchart(*), imagemap
where WIDTH=500 AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND MAPNAME='simpbar'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND COLOR=newcolor
|
 |
select * from symline
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Iconic Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND ICON='t/pumpkin.png'
AND MAPNAME='iconbars'
AND SHOWGRID=1
AND GRIDCOLOR='blue'
AND TEXTCOLOR='dbrown'
AND MAPSCRIPT='ONCLICK=\"alert(''Got X=:X, Y=:Y'')\"'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from symline
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Iconic Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND ICON='t/pumpkin.png'
AND MAPNAME='iconhisto'
AND SHOWGRID=1
AND GRIDCOLOR='red'
AND TEXTCOLOR='newcolor'
AND MAPSCRIPT='ONCLICK=\"alert(''Got X=:X, Y=:Y'')\"'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from simpbox
returning boxchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND TITLE='Boxchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND COLORS IN ('newcolor', 'red')
AND SHOWVALUES=1
AND MAPNAME='simpbox'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from simpcandle
returning candlestick(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS = 'Price'
AND TITLE='Candlestick Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND COLORS IN ('newcolor')
AND SHAPE='fillsquare'
AND SHOWVALUES=1
AND SHOWGRID=1
AND MAPNAME='simpcandle'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from simppie
returning piechart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND TITLE='Piechart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND COLORS IN ('red', 'blue', 'newcolor', 'green', 'yellow')
AND MAPNAME='simppie'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from simppie
returning piechart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND TITLE='3-D Piechart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND COLORS IN ('red', 'blue', 'newcolor', 'green', 'yellow')
AND THREE_D=1
AND MAPNAME='pie3d'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from simpline
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='3-D Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND COLORS IN ('orange')
AND THREE_D=1
AND SHOWGRID=1
AND MAPNAME='bar3d'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from bar3axis
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='3 Axis Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Region'
AND Y_AXIS='Sales'
AND Z-AXIS='Quarter'
AND FORMAT='PNG'
AND COLORS IN ('red')
AND SHOWGRID=1
AND SHOWVALUES=1
AND MAPNAME='bar3axis'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from simppie
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND COLOR IN ('red', 'green', 'orange', 'blue', 'newcolor')
AND SHOWGRID=1
AND SHOWVALUES=1
AND MAPNAME='simphisto'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from simppie
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND COLOR='orange'
AND THREE_D=1
AND SHOWGRID=1
AND SHOWVALUES=1
AND MAPNAME='histo3d'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from bar3axis
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='3 Axis Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Region'
AND Y_AXIS='Sales'
AND Z_AXIS='Quarter'
AND FORMAT='PNG'
AND COLORS='red'
AND SHOWGRID=1
AND SHOWVALUES=1
AND MAPNAME='histo3axis'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from templine
returning linegraph(xdate, y), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Temporal Domain Linegraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND X_ORIENT='VERTICAL'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND COLORS=newcolor
AND SHOWGRID=1
AND SHOWVALUES=1
AND MAPNAME='templine'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from templine2
returning linegraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Temporal Range Linegraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND X_ORIENT='VERTICAL'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND COLORS=newcolor
AND SHOWGRID=1
AND SHOWVALUES=1
AND SHAPE=fillcircle
AND MAPNAME='templine2'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from logtempline
returning linegraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Logarithmic Temporal Range Linegraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND X_ORIENT='VERTICAL'
AND Y-LOG=1
AND FORMAT='PNG'
AND COLORS=newcolor
AND SHOWGRID=1
AND SHOWVALUES=1
AND SHAPE=fillcircle
AND MAPNAME='logtempline'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from templine
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Temporal Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND COLORS=red
AND SHOWVALUES=1
AND MAPNAME='tempbar'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from templine2
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Temporal Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND COLORS=blue
AND SHOWVALUES=1
AND MAPNAME='temphisto'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from
(select * from simpline
returning linegraph(*)
where color=newcolor
AND shape='fillcircle') simpline,
(select * from simppie
returning pointgraph(*)
where color=blue
AND shape='opensquare') simppt
returning image, imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Composite Line/Pointgraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND MAPNAME='complinept'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from
(select * from simpline
returning linegraph(*)
where color=newcolor
AND shape=fillcircle) simpline,
(select * from simppie
returning pointgraph(*)
where color=blue
AND shape=opensquare) simppt,
(select * from complpa
returning areagraph(*)
where color=red) simparea
returning image, imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Composite Line/Point/Areagraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND MAPNAME='complpa'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from
(select * from simpline
returning linegraph(*)
where color=newcolor
AND shape=fillcircle) simpline,
(select * from simppie
returning pointgraph(*)
where color=blue
AND shape=opensquare) simppt,
(select * from complpa
returning areagraph(*)
where color=green) simparea,
(select * from complpa
returning barchart(*)
where color=red) simpbar
returning image, imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Composite Bar/Line/Point/Areagraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND MAPNAME='compblpa'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from
(select * from complnbox
returning linegraph(*)
where color=red
AND shape=fillcircle) simpline,
(select * from simpbox
returning boxchart(*)
where color=newcolor) simpbox
returning image, imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Composite Box
AND Line Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND MAPNAME='complnbox'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from
(select * from complnbox
returning linegraph(*)
where color=newcolor
AND shape=fillcircle
and showvalues=1) simpline,
(select * from simpbox
returning boxchart(*)
where color=newcolor) simpbox,
(select * from compllbb
returning linegraph(*)
where color=red
AND shape=fillcircle
and showvalues=0) simpline2,
(select * from simpbox2
returning boxchart(*)
where color=red) simpbox2
returning image, imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Composite Multiple Box
AND Line Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND MAPNAME='compllbb'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from
(select * from simppie returning histogram(*)
where color=red) histo1,
(select * from complpa returning histogram(*)
where color=blue) histo2
returning image, imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Composite Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND THREE_D=1
AND SHOWVALUES = 1
AND MAPNAME='comphisto'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from
(select * from simppie
returning barchart(*)
where color=red) bars1,
(select * from complpa
returning barchart(*)
where color=blue) bars2
returning image, imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Composite Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND SHOWVALUES = 1
AND SHOWGRID=1
AND MAPNAME='compbars'
AND ICONS=('t/pumpkin.png', 't/turkey.png' )
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from
(select * from densesin
returning linegraph(*)
where color=red) densesin,
(select * from densecos
returning linegraph(*)
where color=blue) densecos
returning image
where WIDTH=500
AND HEIGHT=500
AND TITLE='Composite Dense Linegraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Angle (Radians)'
AND Y_AXIS='Sin/Cos'
AND FORMAT='PNG'
|
 |
select * from
(select * from densesin
returning areagraph(*)
where color=red) densesin,
(select * from densecos
returning areagraph(*)
where color=blue) densecos
returning image
where WIDTH=500
AND HEIGHT=500
AND TITLE='Composite Dense Areagraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Angle (Radians)'
AND Y_AXIS='Sin/Cos'
AND FORMAT='PNG'
|
 |
select * from simpgantt
returning gantt(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Simple Gantt Chart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Tasks'
AND Y_AXIS='Schedule'
AND COLOR=red
AND LOGO='t/gowilogo.png'
AND MAPNAME='simpgantt'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND X_ORIENT='VERTICAL'
AND FORMAT='PNG'
|
 |
select * from stackbar
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Stacked Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND MAPNAME='stackbar'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('yellow', 'blue')
|
 |
select * from stackbar
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Stacked Iconic Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND ICONS IN ('t/pumpkin.png', 't/turkey.png')
AND MAPNAME='stackbar'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML' |
 |
select * from stackbar
returning areagraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Stacked Areagraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND MAPNAME='stackarea'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('red', 'green')
|
 |
select * from stackbar
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Stacked Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND MAPNAME='stackhisto'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('red', 'green')
|
 |
select * from stackcandle
returning candlestick(*), imagemap
where WIDTH=300
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS = 'Price'
AND TITLE='Stacked Candlestick Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND COLORS IN ('newcolor', 'red')
AND SHOWGRID=1
AND STACK=1
AND MAPNAME='stackcandle'
AND LINEWIDTH=5
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select * from stackbar
returning linegraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Multiline NULL Shape, Map Modifier Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND MAPNAME='multilinemm'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('red', 'green')
AND SHAPES IN (NULL, 'filldiamond')
|
 |
SELECT * FROM myquad
returning QUADTREE(*), IMAGEMAP
WHERE COLORS IN ('red', 'black', 'green')
AND WIDTH=500
AND HEIGHT=500
AND TITLE='My Quadtree'
AND MAPTYPE='HTML'
AND MAPNAME='quadtree'
AND MAPURL=
'http://www.presicient.com/cgi-bin/quadtree.pl?group=:X\&item=:Y\&value=:Z\&intensity=:PLOTNUM'
|
 |
select * from stackbar
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Stacked 3-D Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND THREE_D=1
AND MAPNAME='stack3Dbar'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('yellow', 'blue')
|
 |
select * from stackbar
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Stacked 3-D Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND THREE_D=1
AND MAPNAME='stack3Dhisto'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('red', 'green')
|
 |
select * from tmstamp
returning linegraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Timestamp Domain Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND MAPNAME='tmstamp'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('yellow', 'blue')
|
 |
select * from floatbar
returning areagraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Floating Stacked Areagraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND ANCHORED=0
AND MAPNAME='floatarea'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('green', 'yellow', 'red')
|
 |
select * from floatbar
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Floating Stacked Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND ANCHORED=0
AND MAPNAME='floathisto'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('red', 'green', 'orange')
|
 |
select * from floatbar
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Floating Stacked Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND ANCHORED=0
AND MAPNAME='floatbar'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('yellow', 'blue', 'red')
|
 |
select * from
(select * from floatbar
returning areagraph(*)
where anchored=0
and stack=1
AND colors in ('blue', 'yellow', 'red')),
(select * from regline
returning linegraph(*)
where color='newcolor'
AND showvalues=1 ) regline,
(select * from fatline
returning linegraph(*)
where color='lgray'
AND linewidth=10) fatline,
(select * from midline
returning linegraph(*)
where color='green'
AND linewidth=4) midline\
returning image, imagemap
where WIDTH=500
AND HEIGHT=500
AND TITLE='Variable Width Linegraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND FORMAT='PNG'
AND MAPNAME='multwidth'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
|
 |
select
capturedt,
tblsz as TotalMB
from
mystats
where
tabname = ?
order by
capturedt
RETURNING linegraph(*)
WHERE
WIDTH=600 AND
HEIGHT=400 AND
format='PNG' and
KEEPORIGIN=1 and
SHOWGRID=1 and
linewidth=2 and
gridcolor='lgray' and
x_orient='VERTICAL' and
x_axis = ' ' and
y_axis = 'MB' and
SIGNATURE='abc (Ver 1.0)' and
TITLE = 'Table Growth (PS_JOB)'
|
";
foreach (1..100) {
push @xbox, int(rand(51)+10);
$xbhash{$xbox[$#xbox]} += 1, next
if $xbhash{$xbox[$#xbox]};
$xbhash{$xbox[$#xbox]} = 1;
}
push(@xfreq, $_),
push (@yfreq, $xbhash{$_} ? $xbhash{$_} : 0)
foreach (10..60);
my @xfreq2 = ();
my @yfreq2 = ();
my @xbox2 = ();
my %xbhash2 = ();
foreach (1..200) {
push @xbox2, int(rand(61)+10);
$xbhash2{$xbox2[$#xbox2]} += 1, next
if $xbhash2{$xbox2[$#xbox2]};
$xbhash2{$xbox2[$#xbox2]} = 1;
}
push(@xfreq2, $_),
push (@yfreq2, $xbhash2{$_} ? $xbhash2{$_} : 0)
foreach (10..70);
my $testnum = 0;
goto $ARGV[0] if ($ARGV[0]);
#
# simple line chart
#
simpline:
$dbh->{PrintError} = 0;
$dbh->do('drop table simpline');
$dbh->{PrintError} = 1;
$dbh->do('create table simpline (x integer, y integer)');
$sth = $dbh->prepare('insert into simpline values(?, ?)');
$sth->execute($x[$_], $y1[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from simpline
returning linegraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Linegraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND SHOWGRID=1
AND LINEWIDTH=4
AND MAPNAME='simpline'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLOR='newcolor'
AND SHAPE='fillcircle'
AND SHOWVALUES=1", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'simpline');
$testnum++;
print "ok $testnum simpline OK\n";
#
# simple scatter chart
#
simpscat:
$sth = $dbh->prepare("select * from simpline
returning pointgraph(x,y), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Scattergraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND SHOWGRID=0
AND MAPNAME='simpscat'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND SHOWVALUES=1", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'simpscat');
$testnum++;
print "ok $testnum simpscat OK\n";
#
# simple area chart
#
simparea:
$sth = $dbh->prepare("select * from simpline
returning areagraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Areagraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND SHOWGRID=1
AND MAPNAME='simparea'
AND COLOR='newcolor'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND SHOWVALUES=0", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'simparea');
$testnum++;
print "ok $testnum simparea OK\n";
#
# simple linechart w/ sym domain and icons
#
symline:
$dbh->{PrintError} = 0;
$dbh->do('drop table symline');
$dbh->{PrintError} = 1;
$dbh->do('create temp table symline (xdate varchar(20), y integer)');
$sth = $dbh->prepare('insert into symline values(?, ?)');
$sth->execute($xdate[$_], $y1[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from symline
returning linegraph(*), imagemap
where WIDTH=500 AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Symbolic Domain Linegraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND LOGO='t/gowilogo.png'
AND FORMAT='PNG'
AND SHOWGRID=1
AND MAPNAME='symline'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND COLOR=newcolor AND SHAPE=fillcircle", {
chart_type_map => [
{ NAME => 'xdate', TYPE => SQL_VARCHAR, PRECISION => 20 },
{ NAME => 'y', TYPE => SQL_INTEGER } ] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'symline');
$testnum++;
print "ok $testnum symline OK\n";
#
# simple bar chart
#
simpbar:
$sth = $dbh->prepare("select * from symline
returning barchart(*), imagemap
where WIDTH=500 AND HEIGHT=500
AND X_AXIS='Some Domain' and Y_AXIS='Some Range' AND
TITLE='Barchart Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND SHOWVALUES=1 AND
MAPNAME='simpbar' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND COLOR=newcolor", {
chart_type_map => [
{ NAME => 'xdate', TYPE => SQL_VARCHAR, PRECISION => 20 },
{ NAME => 'y', TYPE => SQL_INTEGER } ] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'simpbar');
$testnum++;
print "ok $testnum simpbar OK\n";
#
# simple bar chart w/ icons
#
iconbars:
$sth = $dbh->prepare("select * from symline
returning barchart(*), imagemap
where WIDTH=500 AND HEIGHT=500
AND X_AXIS='Some Domain' and Y_AXIS='Some Range' AND
TITLE='Iconic Barchart Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND SHOWVALUES=1 AND ICON='t/pumpkin.png' AND
MAPNAME='iconbars' AND SHOWGRID=1 AND GRIDCOLOR='blue' AND
TEXTCOLOR='dbrown' AND
MAPSCRIPT='ONCLICK=\"alert(''Got X=:X, Y=:Y'')\"' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'xdate', TYPE => SQL_VARCHAR, PRECISION => 20 },
{ NAME => 'y', TYPE => SQL_INTEGER } ] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'iconbars');
$testnum++;
print "ok $testnum iconbars OK\n";
#
# simple bar chart w/ icons
#
iconhisto:
$sth = $dbh->prepare("select * from symline
returning histogram(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND X_AXIS='Some Domain' and
Y_AXIS='Some Range' AND
TITLE='Iconic Histogram Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND ICON='t/pumpkin.png' AND
MAPNAME='iconhisto' AND SHOWGRID=1 AND GRIDCOLOR='red' AND
TEXTCOLOR='newcolor' AND
MAPSCRIPT='ONCLICK=\"alert(''Got X=:X, Y=:Y'')\"' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'xdate', TYPE => SQL_VARCHAR, PRECISION => 20 },
{ NAME => 'y', TYPE => SQL_INTEGER } ] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'iconhisto');
$testnum++;
print "ok $testnum iconhisto OK\n";
#
# simple boxchart
#
simpbox:
$dbh->{PrintError} = 0;
$dbh->do('drop table simpbox');
$dbh->{PrintError} = 1;
$dbh->do('create temp table simpbox (xbox integer, xbox2 integer)');
$sth = $dbh->prepare('insert into simpbox values(?, ?)');
$sth->execute($xbox[$_], $xbox2[$_])
foreach (0..$#xbox);
$sth = $dbh->prepare("select * from simpbox
returning boxchart(*), imagemap
where WIDTH=500 AND HEIGHT=500
AND X_AXIS='Some Domain' AND
TITLE='Boxchart Test'
AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND
COLORS IN ('newcolor', 'red') AND SHOWVALUES=1 AND
MAPNAME='simpbox' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'xbox', TYPE => SQL_INTEGER },
{ NAME => 'xbox2', TYPE => SQL_INTEGER } ] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'simpbox');
$testnum++;
print "ok $testnum simpbox OK\n";
#
# simple candlestick
#
simpcandle:
$dbh->{PrintError} = 0;
$dbh->do('drop table simpcandle');
$dbh->{PrintError} = 1;
$dbh->do('create temp table simpcandle (x integer, ylo integer, yhi integer)');
$sth = $dbh->prepare('insert into simpcandle values(?, ?, ?)');
$sth->execute($x[$_], $y1[$_], $y2[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from simpcandle
returning candlestick(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND X_AXIS='Some Domain' AND
Y_AXIS = 'Price' AND
TITLE='Candlestick Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND COLORS IN ('newcolor') AND SHAPE='fillsquare' AND
SHOWVALUES=1 AND SHOWGRID=1 AND
MAPNAME='simpcandle' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER },
{ NAME => 'yhi', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'simpcandle');
$testnum++;
print "ok $testnum simpcandle OK\n";
#
# simple pie chart
#
simppie:
$dbh->{PrintError} = 0;
$dbh->do('drop table simppie');
$dbh->{PrintError} = 1;
$dbh->do('create temp table simppie (x integer, y2 integer)');
$sth = $dbh->prepare('insert into simppie values(?, ?)');
$sth->execute($x[$_], $y2[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from simppie
returning piechart(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND X_AXIS='Some Domain' AND
TITLE='Piechart Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND COLORS IN ('red', 'blue', 'newcolor', 'green', 'yellow') AND
MAPNAME='simppie' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'simppie');
$testnum++;
print "ok $testnum simppie OK\n";
#
# 3-D pie chart
#
pie3d:
$sth = $dbh->prepare("select * from simppie
returning piechart(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND X_AXIS='Some Domain' AND
TITLE='3-D Piechart Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND COLORS IN ('red', 'blue', 'newcolor', 'green', 'yellow') AND
THREE_D=1 AND
MAPNAME='pie3d' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'pie3d');
$testnum++;
print "ok $testnum pie3d OK\n";
#
# simple histogram
#
simphisto:
$sth = $dbh->prepare("select * from simppie
returning histogram(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Histogram Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND COLOR IN ('red', 'green', 'orange', 'blue', 'newcolor') AND
SHOWGRID=1 AND SHOWVALUES=1 AND
MAPNAME='simphisto' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'simphisto');
$testnum++;
print "ok $testnum simphisto OK\n";
#
# linechart w/ temporal domain
#
templine:
$dbh->{PrintError} = 0;
$dbh->do('drop table templine');
$dbh->{PrintError} = 1;
$dbh->do('create temp table templine (xdate varchar(20), y integer)');
$sth = $dbh->prepare('insert into templine values(?, ?)');
$sth->execute($xdate[$_], $y1[$_])
foreach (0..$#xdate);
$sth = $dbh->prepare("select * from templine
returning linegraph(xdate, y), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Temporal Domain Linegraph Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
X_ORIENT='VERTICAL' AND LOGO='t/gowilogo.png' AND
FORMAT='PNG' AND COLORS=newcolor AND
SHOWGRID=1 AND SHOWVALUES=1 AND
MAPNAME='templine' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'xdate', TYPE => SQL_DATE },
{ NAME => 'y', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'templine');
$testnum++;
print "ok $testnum templine OK\n";
#
# linechart w/ temporal domain and range
#
templine2:
$dbh->{PrintError} = 0;
$dbh->do('drop table templine2');
$dbh->{PrintError} = 1;
$dbh->do('create temp table templine2 (xdate varchar(20), y varchar(20))');
$sth = $dbh->prepare('insert into templine2 values(?, ?)');
$sth->execute($xdate[$_], $ytime[$_])
foreach (0..$#xdate);
$sth = $dbh->prepare("select * from templine2
returning linegraph(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Temporal Range Linegraph Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
X_ORIENT='VERTICAL' AND LOGO='t/gowilogo.png' AND
FORMAT='PNG' AND COLORS=newcolor AND
SHOWGRID=1 AND SHOWVALUES=1 AND SHAPE=fillcircle AND
MAPNAME='templine2' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'xdate', TYPE => SQL_DATE },
{ NAME => 'y', TYPE => SQL_INTERVAL }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'templine2');
$testnum++;
print "ok $testnum templine2 OK\n";
#
# log linechart w/ temporal domain and range
#
logtempline:
$dbh->{PrintError} = 0;
$dbh->do('drop table logtempline');
$dbh->{PrintError} = 1;
$dbh->do('create temp table logtempline (xdate varchar(20), y varchar(20))');
$sth = $dbh->prepare('insert into logtempline values(?, ?)');
$sth->execute($xdate2[$_], $ytime2[$_])
foreach (0..$#xdate2);
$sth = $dbh->prepare("select * from logtempline
returning linegraph(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Logarithmic Temporal Range Linegraph Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
X_ORIENT='VERTICAL' AND Y-LOG=1 AND
FORMAT='PNG' AND COLORS=newcolor AND
SHOWGRID=1 AND SHOWVALUES=1 AND SHAPE=fillcircle AND
MAPNAME='logtempline' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'xdate', TYPE => SQL_DATE },
{ NAME => 'y', TYPE => SQL_INTERVAL }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'logtempline');
$testnum++;
print "ok $testnum logtempline OK\n";
#
# barchart w/ temp. domain
#
tempbar:
$sth = $dbh->prepare("select * from templine
returning barchart(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Temporal Barchart Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND COLORS=red AND
SHOWVALUES=1 AND
MAPNAME='tempbar' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'xdate', TYPE => SQL_DATE },
{ NAME => 'y', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'tempbar');
$testnum++;
print "ok $testnum tempbar OK\n";
#
# histo w/ temp domain
#
temphisto:
$sth = $dbh->prepare("select * from templine2
returning histogram(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Temporal Histogram Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND COLORS=blue AND
SHOWVALUES=1 AND
MAPNAME='temphisto' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'xdate', TYPE => SQL_DATE },
{ NAME => 'y', TYPE => SQL_INTERVAL }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'temphisto');
$testnum++;
print "ok $testnum temphisto OK\n";
#
# composite (line, scatter)
#
complinept:
$sth = $dbh->prepare("select * from
(select * from simpline
returning linegraph(*)
where color=newcolor and shape='fillcircle') simpline,
(select * from simppie
returning pointgraph(*)
where color=blue and shape='opensquare') simppt
returning image, imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Composite Line/Pointgraph Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND
MAPNAME='complinept' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER } ],
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'complinept');
$testnum++;
print "ok $testnum complinept OK\n";
#
# composite (area, line, scatter)
#
complpa:
$dbh->{PrintError} = 0;
$dbh->do('drop table complpa');
$dbh->{PrintError} = 1;
$dbh->do('create temp table complpa (x integer, y integer)');
$sth = $dbh->prepare('insert into complpa values(?, ?)');
$sth->execute($x[$_], $y3[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from
(select * from simpline
returning linegraph(*)
where color=newcolor and shape=fillcircle) simpline,
(select * from simppie
returning pointgraph(*)
where color=blue and shape=opensquare) simppt,
(select * from complpa
returning areagraph(*)
where color=red) simparea
returning image, imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Composite Line/Point/Areagraph Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND
MAPNAME='complpa' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER } ]
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'complpa');
$testnum++;
print "ok $testnum complpa OK\n";
#
# composite (area, bar, line, scatter)
#
compblpa:
$sth = $dbh->prepare("select * from
(select * from simpline
returning linegraph(*)
where color=newcolor and shape=fillcircle) simpline,
(select * from simppie
returning pointgraph(*)
where color=blue and shape=opensquare) simppt,
(select * from complpa
returning areagraph(*)
where color=green) simparea,
(select * from complpa
returning barchart(*)
where color=red) simpbar
returning image, imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Composite Bar/Line/Point/Areagraph Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND
MAPNAME='compblpa' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER } ],
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'compblpa');
$testnum++;
print "ok $testnum compblpa OK\n";
#
# composite (line, box)
#
complnbox:
$dbh->{PrintError} = 0;
$dbh->do('drop table simpbox');
$dbh->do('drop table complnbox');
$dbh->{PrintError} = 1;
$dbh->do('create temp table simpbox (x integer)');
$sth = $dbh->prepare('insert into simpbox values(?)');
$sth->execute($_) foreach (@xbox);
$dbh->do('create temp table complnbox (xfreq integer, yfreq integer)');
$sth = $dbh->prepare('insert into complnbox values(?, ?)');
$sth->execute($xfreq[$_], $yfreq[$_])
foreach (0..$#xfreq);
$sth = $dbh->prepare("select * from
(select * from complnbox
returning linegraph(*)
where color=red and shape=fillcircle) simpline,
(select * from simpbox
returning boxchart(*)
where color=newcolor) simpbox
returning image, imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Composite Box and Line Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND
MAPNAME='complnbox' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
[ { NAME => 'xfreq', TYPE => SQL_INTEGER },
{ NAME => 'yfreq', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER } ],
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'complnbox');
$testnum++;
print "ok $testnum complnbox OK\n";
#
# composite (line, line, box, box)
#
compllbb:
$dbh->{PrintError} = 0;
$dbh->do('drop table simpbox2');
$dbh->do('drop table compllbb');
$dbh->{PrintError} = 1;
$dbh->do('create temp table simpbox2 (x integer)');
$sth = $dbh->prepare('insert into simpbox2 values(?)');
$sth->execute($_) foreach (@xbox2);
$dbh->do('create temp table compllbb (xfreq2 integer, yfreq2 integer)');
$sth = $dbh->prepare('insert into compllbb values(?, ?)');
$sth->execute($xfreq2[$_], $yfreq2[$_])
foreach (0..$#xfreq2);
$sth = $dbh->prepare("select * from
(select * from complnbox
returning linegraph(*)
where color=newcolor and shape=fillcircle
and showvalues=1) simpline,
(select * from simpbox
returning boxchart(*)
where color=newcolor) simpbox,
(select * from compllbb
returning linegraph(*)
where color=red and shape=fillcircle
and showvalues=0) simpline2,
(select * from simpbox2
returning boxchart(*)
where color=red) simpbox2
returning image, imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Composite Multiple Box and Line Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND
MAPNAME='compllbb' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
[ { NAME => 'xfreq', TYPE => SQL_INTEGER },
{ NAME => 'yfreq', TYPE => SQL_INTEGER } ],
[ { NAME => 'xbox', TYPE => SQL_INTEGER } ],
[ { NAME => 'xfreq2', TYPE => SQL_INTEGER },
{ NAME => 'yfreq2', TYPE => SQL_INTEGER } ],
[ { NAME => 'xbox2', TYPE => SQL_INTEGER } ]
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'compllbb');
$testnum++;
print "ok $testnum compllbb OK\n";
#
# composite (bar, bar, bar)
#
compbars:
$sth = $dbh->prepare("select * from
(select * from simppie
returning barchart(*)
where color=red) bars1,
(select * from complpa
returning barchart(*)
where color=blue) bars2
returning image, imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Composite Barchart Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND SHOWVALUES = 1 AND SHOWGRID=1 AND
MAPNAME='compbars' AND ICONS=('t/pumpkin.png', 't/turkey.png' ) AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER } ],
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'compbars');
$testnum++;
print "ok $testnum compbars OK\n";
#
# dense numeric graph (sin/cos)
denseline:
$dbh->{PrintError} = 0;
$dbh->do('drop table densesin');
$dbh->do('drop table densecos');
$dbh->{PrintError} = 1;
$dbh->do('create temp table densesin (angle real, sine real)');
$dbh->do('create temp table densecos (angle real, cosine real)');
$sth = $dbh->prepare('insert into densesin values(?,?)');
$sth2 = $dbh->prepare('insert into densecos values(?,?)');
$i = 0;
$sth->execute($i, sin($i)),
$sth2->execute($i, cos($i)),
$i += (PI/180)
while ($i < 4*PI);
$sth = $dbh->prepare("select * from
(select * from densesin
returning linegraph(*)
where color=red) densesin,
(select * from densecos
returning linegraph(*)
where color=blue) densecos
returning image
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Composite Dense Linegraph Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Angle (Radians)' AND Y_AXIS='Sin/Cos' AND
FORMAT='PNG'", {
chart_type_map => [
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER } ],
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'denseline', 1);
$testnum++;
print "ok $testnum denseline OK\n";
densearea:
$sth = $dbh->prepare("select * from
(select * from densesin
returning areagraph(*)
where color=red) densesin,
(select * from densecos
returning areagraph(*)
where color=blue) densecos
returning image
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Composite Dense Areagraph Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Angle (Radians)' AND Y_AXIS='Sin/Cos' AND
FORMAT='PNG'", {
chart_type_map => [
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER } ],
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'densearea', 1);
$testnum++;
print "ok $testnum densearea OK\n";
simpgantt:
my @tasks = ( 'First task', '2nd Task', '3rd task', 'Another task', 'Final task');
my @starts = ( '2002-01-24', '2002-02-01', '2002-02-14', '2002-01-27', '2002-03-28');
my @ends = ( '2002-01-31', '2002-02-25', '2002-03-10', '2002-02-27', '2002-04-15');
my @assigned = ( 'DAA', 'DWE', 'SAM', 'KPD', 'WLA');
my @pct = ( 25, 37, 0, 0, 0 );
my @depends = ( '3rd task', 'Final task', undef, '2nd task', undef);
$dbh->{PrintError} = 0;
$dbh->do('drop table simpgantt');
$dbh->{PrintError} = 1;
$dbh->do('create temp table simpgantt (task varchar(30),
starts varchar(20), ends varchar(20), assignee varchar(3), pctcomplete integer,
dependent varchar(30))');
$sth = $dbh->prepare('insert into simpgantt values(?,?,?,?,?,?)');
$sth->execute($tasks[$_], $starts[$_], $ends[$_], $assigned[$_],
$pct[$_], $depends[$_])
foreach (0..$#tasks);
$sth = $dbh->prepare("select * from simpgantt
returning gantt(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Simple Gantt Chart Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Tasks' AND Y_AXIS='Schedule' AND
COLOR=red AND LOGO='t/gowilogo.png' AND
MAPNAME='simpgantt' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND
X_ORIENT='VERTICAL' AND
FORMAT='PNG'", {
chart_type_map => [
{ NAME => 'task', TYPE => SQL_VARCHAR, PRECISION => 30 },
{ NAME => 'starts', TYPE => SQL_DATE } ,
{ NAME => 'ends', TYPE => SQL_DATE } ,
{ NAME => 'assignee', TYPE => SQL_VARCHAR, PRECISION => 3 } ,
{ NAME => 'pctcomplete', TYPE => SQL_INTEGER } ,
{ NAME => 'dependent', TYPE => SQL_VARCHAR, PRECISION => 30 }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'simpgantt');
$testnum++;
print "ok $testnum simpgantt OK\n";
#
# stacked bar chart
#
stackbar:
$dbh->{PrintError} = 0;
$dbh->do('drop table stackbar');
$dbh->{PrintError} = 1;
$dbh->do('create temp table stackbar (x integer, ylo integer, yhi integer)');
$sth = $dbh->prepare('insert into stackbar values(?, ?, ?)');
$sth->execute($x[$_], $y1[$_], $y3[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from stackbar
returning barchart(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND X_AXIS='Some Domain' and Y_AXIS='Some Range' AND
TITLE='Stacked Barchart Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND SHOWVALUES=1 AND STACK=1 AND
MAPNAME='stackbar' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND COLORS IN ('yellow', 'blue')", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER },
{ NAME => 'yhi', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'stackbar');
$testnum++;
print "ok $testnum stackbar OK\n";
#
# stacked bar chart
#
stackicon:
$sth = $dbh->prepare("select * from stackbar
returning barchart(*), imagemap
where WIDTH=500 AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Stacked Iconic Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND ICONS IN ('t/pumpkin.png', 't/turkey.png')
AND MAPNAME='stackbar'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER },
{ NAME => 'yhi', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'stackicon');
$testnum++;
print "ok $testnum stackicon OK\n";
#
# stacked histogram chart
#
stackhisto:
$sth = $dbh->prepare("select * from stackbar
returning histogram(*), imagemap
where WIDTH=500 AND HEIGHT=500
AND X_AXIS='Some Domain' and Y_AXIS='Some Range' AND
TITLE='Stacked Histogram Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND SHOWVALUES=1 AND STACK=1 AND
MAPNAME='stackhisto' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND COLORS IN ('red', 'green')", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER },
{ NAME => 'yhi', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'stackhisto');
$testnum++;
print "ok $testnum stackhisto OK\n";
#
# stacked area chart
#
stackarea:
$dbh->{PrintError} = 0;
$dbh->do('drop table stackbar');
$dbh->{PrintError} = 1;
$dbh->do('create temp table stackbar (x integer, ylo integer, yhi integer)');
$sth = $dbh->prepare('insert into stackbar values(?, ?, ?)');
$sth->execute($x[$_], $y2[$_], $y3[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from stackbar
returning areagraph(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND X_AXIS='Some Domain' and Y_AXIS='Some Range' AND
TITLE='Stacked Areagraph Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND SHOWVALUES=1 AND STACK=1 AND
MAPNAME='stackarea' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND COLORS IN ('red', 'green')", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER },
{ NAME => 'yhi', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'stackarea');
$testnum++;
print "ok $testnum stackarea OK\n";
#
# stacked candlestick
#
stackcandle:
$dbh->{PrintError} = 0;
$dbh->do('drop table stackcandle');
$dbh->{PrintError} = 1;
$dbh->do('create temp table stackcandle (x integer, ylo integer, ymid integer, yhi integer)');
$sth = $dbh->prepare('insert into stackcandle values(?, ?, ?, ?)');
$sth->execute($x[$_], $y1[$_], $y2[$_], $y3[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from stackcandle
returning candlestick(*), imagemap
where WIDTH=300 AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS = 'Price'
AND TITLE='Stacked Candlestick Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND COLORS IN ('newcolor', 'red')
AND SHOWGRID=1
AND STACK=1
AND MAPNAME='stackcandle'
AND LINEWIDTH=5
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER },
{ NAME => 'ymid', TYPE => SQL_INTEGER },
{ NAME => 'yhi', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'stackcandle');
$testnum++;
print "ok $testnum stackcandle OK\n";
#
# multiline w/ NULL shape and map modifier
#
multilinemm:
$sth = $dbh->prepare("select * from stackbar
returning linegraph(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
X_AXIS='Some Domain' and Y_AXIS='Some Range' AND
TITLE='Multiline NULL Shape, Map Modifier Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND SHOWVALUES=1 AND
MAPNAME='multilinemm' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML' AND COLORS IN ('red', 'green')
AND SHAPES IN (NULL, 'filldiamond')", {
chart_map_modifier => \&modify_map,
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER },
{ NAME => 'yhi', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'multilinemm');
$testnum++;
print "ok $testnum multilinemm OK\n";
#
# Quadtree test
#
quadtree:
@dataset = (
[ 'Retail', 'Specialty', 'Sharper Image', 100, 2.3 ],
[ 'Retail', 'Dept. Store', 'Nordstrom', 400, 1.2 ],
[ 'Retail', 'Discount', 'Walmart', 900, 1.5 ],
[ 'High Tech', 'Semiconductor', 'Intel', 1000, -2.1 ],
[ 'High Tech', 'Software', 'Microsoft', 1200, -1.1 ],
[ 'High Tech', 'Hardware', 'Dell', 800, 1.0 ],
[ 'High Tech', 'Biotech', 'Merck', 1000, 1.4 ],
[ 'Energy', 'Oil Producers', 'Exxon', 1200, -2 ],
[ 'Energy', 'Oil Discovery', 'Schumberger', 300, -1 ],
[ 'Energy', 'Power Utility', 'Edison', 800, -1.5 ],
[ 'Manufacturing', 'Automotive', 'GM', 1200, 3 ],
[ 'Manufacturing', 'Aerospace', 'Boeing', 1600, -3 ],
[ 'Manufacturing', 'Heavy Equipement', 'John Deere', 750, 0 ],
[ 'Manufacturing', 'Durable Goods', 'Whirlpool', 400, 2 ],
[ 'Manufacturing', 'Other', 'Fruit of the Loom', 100, -1.4 ],
[ 'Health Care', 'HMO', 'Kaiser', 1100, 2 ],
[ 'Health Care', 'Hospital', 'Bethel', 320, 0.5 ],
[ 'Health Care', 'Equipment', 'XYZ', 200, -0.4 ],
[ 'Health Care', 'Services', 'Medical Billing Inc', 250, 1.2 ],
[ 'Transportation', 'Airlines', 'UAL', 1000, -1 ],
[ 'Transportation', 'Trucking', 'Longhaul', 450, 1 ],
[ 'Transportation', 'Rails', 'Union Pacific', 1000, 2 ],
[ 'Telecomm', 'CLEC', 'Verizon', 1300, -1 ],
[ 'Telecomm', 'Long distance', 'ATT', 900, 1.1 ],
[ 'Telecomm', 'Wireless', 'Cingular', 550, 0.7 ],
[ 'Finance', 'Banks', 'Banc of America', 1400, 1.7 ],
[ 'Finance', 'Brokerages', 'Morgan Stanley', 760, 1 ],
[ 'Finance', 'Insurance', 'Allianz', 430, -1 ],
[ 'Service', 'Restaurant', 'YUM', 240, 1.1 ],
[ 'Service', 'Media', 'Tribune', 350, -1.3 ],
[ 'Service', 'Media', 'Disney', 690, -1 ]
);
$dbh->{PrintError} = 0;
$dbh->do('DROP TABLE myquad');
$dbh->{PrintError} = 1;
$dbh->do('CREATE TEMP TABLE myquad (
Sector varchar(30),
Subsector varchar(30),
Stock varchar(30),
RelMktCap integer,
PctChange real)');
$sth = $dbh->prepare('insert into myquad values(?,?,?,?,?)');
$sth->execute(@{$_}) foreach (@dataset);
$sth = $dbh->prepare(
"SELECT * FROM myquad
returning QUADTREE(*), IMAGEMAP
WHERE COLORS IN ('red', 'black', 'green')
AND WIDTH=500 AND HEIGHT=500
AND TITLE='My Quadtree'
AND MAPTYPE='HTML'
AND MAPNAME='quadtree'
AND MAPURL=
'http://www.presicient.com/cgi-bin/quadtree.pl?group=:X\&item=:Y\&value=:Z\&intensity=:PLOTNUM'",
chart_type_map => [
{ NAME => 'Sector', TYPE => SQL_VARCHAR, PRECISION => 30 },
{ NAME => 'Subsector', TYPE => SQL_VARCHAR, PRECISION => 30 },
{ NAME => 'Stock', TYPE => SQL_VARCHAR, PRECISION => 30 },
{ NAME => 'RelMktCap', TYPE => SQL_INTEGER },
{ NAME => 'PctChange', TYPE => SQL_FLOAT }
] );
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'quadtree');
$testnum++;
print "ok $testnum quadtree OK\n";
#
# 3-D barchart
#
bar3d:
$sth = $dbh->prepare("select * from simpline
returning barchart(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND X_AXIS='Some Domain' AND
Y_AXIS='Some Range' AND
TITLE='3-D Barchart Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
FORMAT='PNG' AND COLORS IN ('orange') AND
THREE_D=1 AND SHOWGRID=1 AND
MAPNAME='bar3d' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'bar3d');
$testnum++;
print "ok $testnum bar3d OK\n";
#
# 3-axis bar chart
#
bar3axis:
$dbh->{PrintError} = 0;
$dbh->do('drop table bar3axis');
$dbh->{PrintError} = 1;
$dbh->do('create temp table bar3axis (Region varchar(10), Sales integer, Quarter CHAR(2))');
$sth = $dbh->prepare('insert into bar3axis values(?, ?, ?)');
$sth->execute($x3d[$_], $y3d[$_], $z[$_])
foreach (0..$#x3d);
$sth = $dbh->prepare("select * from bar3axis
returning barchart(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='3 Axis Barchart Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Region' AND Y_AXIS='Sales' AND Z-AXIS='Quarter' AND
FORMAT='PNG' AND COLORS IN ('red') AND
SHOWGRID=1 AND SHOWVALUES=1 AND
MAPNAME='bar3axis' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'Region', TYPE => SQL_VARCHAR, PRECISION => 10},
{ NAME => 'Sales', TYPE => SQL_INTEGER },
{ NAME => 'Quater', TYPE => SQL_CHAR, PRECISION => 2 }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'bar3axis');
$testnum++;
print "ok $testnum bar3axis OK\n";
#
# 3-D histogram
#
histo3d:
$sth = $dbh->prepare("select * from simppie
returning histogram(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Histogram Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND COLOR='orange' AND THREE_D=1 AND
SHOWGRID=1 AND SHOWVALUES=1 AND
MAPNAME='histo3d' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'histo3d');
$testnum++;
print "ok $testnum histo3d OK\n";
#
# 3-axis histogram
#
histo3axis:
$sth = $dbh->prepare("select * from bar3axis
returning histogram(*), imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='3 Axis Histogram Test' AND SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Region' AND Y_AXIS='Sales' AND Z_AXIS='Quarter' AND
FORMAT='PNG' AND COLORS='red' AND
SHOWGRID=1 AND SHOWVALUES=1 AND
MAPNAME='histo3axis' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
{ NAME => 'Region', TYPE => SQL_VARCHAR, PRECISION => 10},
{ NAME => 'Sales', TYPE => SQL_INTEGER },
{ NAME => 'Quater', TYPE => SQL_CHAR, PRECISION => 2 }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'histo3axis');
$testnum++;
print "ok $testnum histo3axis OK\n";
#
# composite (histo, histo)
#
comphisto:
$sth = $dbh->prepare("select * from
(select * from simppie returning histogram(*)
where color=red) histo1,
(select * from complpa returning histogram(*)
where color=blue) histo2
returning image, imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Composite Histogram Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND THREE_D=1 AND SHOWVALUES = 1 AND
MAPNAME='comphisto' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER } ],
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'comphisto');
$testnum++;
print "ok $testnum comphisto OK\n";
#
# stacked bar chart
#
stack3Dbar:
$dbh->{PrintError} = 0;
$dbh->do('drop table stackbar');
$dbh->{PrintError} = 1;
$dbh->do('create temp table stackbar (x integer, ylo integer, yhi integer)');
$sth = $dbh->prepare('insert into stackbar values(?, ?, ?)');
$sth->execute($x[$_], $y1[$_], $y3[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from stackbar
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Stacked 3-D Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND THREE_D=1
AND MAPNAME='stack3Dbar'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('yellow', 'blue')", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER } ,
{ NAME => 'yhi', TYPE => SQL_INTEGER } ,
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'stack3Dbar');
$testnum++;
print "ok $testnum stack3Dbar OK\n";
#
# stacked histogram chart
#
stack3Dhisto:
$sth = $dbh->prepare("select * from stackbar
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Stacked 3-D Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND THREE_D=1
AND MAPNAME='stack3Dhisto' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('red', 'green')", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER } ,
{ NAME => 'yhi', TYPE => SQL_INTEGER } ,
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'stack3Dhisto');
$testnum++;
print "ok $testnum stack3Dhisto OK\n";
#
# timestamp linegraph test
#
tmstamp:
$dbh->{PrintError} = 0;
$dbh->do('drop table tmstamp');
$dbh->{PrintError} = 1;
$dbh->do('create temp table tmstamp (x varchar(30), y integer)');
$sth = $dbh->prepare('insert into tmstamp values(?, ?)');
$sth->execute($xtmstamp[$_], $y3[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from tmstamp
returning linegraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Timestamp Domain Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND MAPNAME='tmstamp'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('yellow', 'blue')", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_TIMESTAMP },
{ NAME => 'y', TYPE => SQL_INTEGER }
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'tmstamp');
$testnum++;
print "ok $testnum tmstamp OK\n";
#
# floated stacked bar chart
#
floatbar:
$dbh->{PrintError} = 0;
$dbh->do('drop table floatbar');
$dbh->{PrintError} = 1;
$dbh->do('create temp table floatbar (x integer, ylo integer, ymid integer, yhi integer)');
$sth = $dbh->prepare('insert into floatbar values(?, ?, ?, ?)');
$sth->execute($x[$_], $y1[$_], $y2[$_], $y3[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from floatbar
returning barchart(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Floating Stacked Barchart Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND ANCHORED=0
AND MAPNAME='floatbar'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('yellow', 'blue', 'red')", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER } ,
{ NAME => 'ymid', TYPE => SQL_INTEGER } ,
{ NAME => 'yhi', TYPE => SQL_INTEGER } ,
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'floatbar');
$testnum++;
print "ok $testnum floatbar OK\n";
#
# floating stacked histogram chart
#
floathisto:
$sth = $dbh->prepare("select * from floatbar
returning histogram(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
and Y_AXIS='Some Range'
AND TITLE='Floating Stacked Histogram Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND ANCHORED=0
AND MAPNAME='floathisto'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('red', 'green', 'orange')", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER } ,
{ NAME => 'ymid', TYPE => SQL_INTEGER } ,
{ NAME => 'yhi', TYPE => SQL_INTEGER } ,
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'floathisto');
$testnum++;
print "ok $testnum floathisto OK\n";
#
# floating stacked area chart
#
floatarea:
$sth = $dbh->prepare("select * from floatbar
returning areagraph(*), imagemap
where WIDTH=500
AND HEIGHT=500
AND X_AXIS='Some Domain'
AND Y_AXIS='Some Range'
AND TITLE='Floating Stacked Areagraph Test'
AND SIGNATURE='(C)2002, GOWI Systems'
AND FORMAT='PNG'
AND SHOWVALUES=1
AND STACK=1
AND ANCHORED=0
AND MAPNAME='floatarea'
AND MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X\&y=:Y\&z=:Z\&plotno=:PLOTNUM'
AND MAPTYPE='HTML'
AND COLORS IN ('green', 'yellow', 'red')", {
chart_type_map => [
{ NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'ylo', TYPE => SQL_INTEGER } ,
{ NAME => 'ymid', TYPE => SQL_INTEGER } ,
{ NAME => 'yhi', TYPE => SQL_INTEGER } ,
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'floatarea');
$testnum++;
print "ok $testnum floatarea OK\n";
#
# multline multiwidth chart
#
multwidth:
$dbh->{PrintError} = 0;
$dbh->do('drop table floatbar');
$dbh->do('drop table regline');
$dbh->do('drop table fatline');
$dbh->do('drop table midline');
$dbh->{PrintError} = 1;
$dbh->do(
'create temp table floatbar (x integer, baseline integer, cold integer, warm integer, hot integer)');
$sth = $dbh->prepare('insert into floatbar values(?, ?, ?, ?, ?)');
$sth->execute(10, -50, -10, 50, 140);
$sth->execute(50, -50, -10, 50, 140);
$dbh->do('create temp table regline (x integer, ylo integer)');
$dbh->do('create temp table fatline (x integer, ymid integer)');
$dbh->do('create temp table midline (x integer, yhi integer)');
$sth1 = $dbh->prepare('insert into regline values(?, ?)');
$sth2 = $dbh->prepare('insert into fatline values(?, ?)');
$sth3 = $dbh->prepare('insert into midline values(?, ?)');
$sth1->execute($x[$_], $y1[$_]),
$sth2->execute($x[$_], $y2[$_]),
$sth3->execute($x[$_], $y3[$_])
foreach (0..$#x);
$sth = $dbh->prepare("select * from
(select * from floatbar
returning areagraph(*)
where anchored=0
and stack=1 and colors in ('blue', 'yellow', 'red')),
(select * from regline
returning linegraph(*)
where color='newcolor' and showvalues=1 ) regline,
(select * from fatline
returning linegraph(*)
where color='lgray' and linewidth=10) fatline,
(select * from midline
returning linegraph(*)
where color='green' and linewidth=4) midline
returning image, imagemap
where WIDTH=500 AND HEIGHT=500 AND
TITLE='Variable Width Linegraph Test' AND
SIGNATURE='(C)2002, GOWI Systems' AND
X_AXIS='Some Domain' AND Y_AXIS='Some Range' AND
FORMAT='PNG' AND
MAPNAME='multwidth' AND
MAPURL='http://www.gowi.com/cgi-bin/sample.pl?x=:X&y=:Y&z=:Z&plotno=:PLOTNUM'
AND MAPTYPE='HTML'", {
chart_type_map => [
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'baseline', TYPE => SQL_INTEGER },
{ NAME => 'cold', TYPE => SQL_INTEGER },
{ NAME => 'warm', TYPE => SQL_INTEGER },
{ NAME => 'hot', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y1', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y2', TYPE => SQL_INTEGER } ],
[ { NAME => 'x', TYPE => SQL_INTEGER },
{ NAME => 'y3', TYPE => SQL_INTEGER } ]
] });
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'multwidth');
$testnum++;
print "ok $testnum multwidth OK\n";
#
# test added for PHs in source stmt
#
srcphs:
$dbh->do('create temp table mystats (
capturedt char(10),
tblsz int,
tabname varchar(100)
)') || die "Can't create temp table: " . $dbh->errstr;
$dbh->do("insert into mystats values('2005-02-10', 324143, 'PS_JOB')");
$dbh->do("insert into mystats values('2005-02-11', 354545, 'PS_JOB')");
$dbh->do("insert into mystats values('2005-02-12', 99766, 'PS_JOB')");
$dbh->do("insert into mystats values('2005-02-13', 135346, 'PS_JOB')");
$dbh->do("insert into mystats values('2005-02-14', 454364, 'PS_JOB')");
$dbh->do("insert into mystats values('2005-02-14', 454364, 'somother_JOB')");
my $tbl = 'PS_JOB';
$sth = $dbh->prepare(qq(
select
capturedt,
tblsz as TotalMB
from
mystats
where
tabname = ?
order by
capturedt
RETURNING linegraph(*)
WHERE
WIDTH=600 AND
HEIGHT=400 AND
format='PNG' and
KEEPORIGIN=1 and
SHOWGRID=1 and
linewidth=2 and
gridcolor='lgray' and
x_orient='VERTICAL' and
x_axis = ' ' and
y_axis = 'MB' and
SIGNATURE='abc (Ver 1.0)' and
TITLE = 'Table Growth ($tbl)'
),
{
chart_type_map => [
{ NAME => 'capturedt', TYPE => SQL_CHAR, PRECISION => 10 },
{ NAME => 'tblsz', TYPE => SQL_INTEGER },
{ NAME => 'tabname', TYPE => SQL_VARCHAR, PRECISION => 100 }
]
}
);
$sth->bind_param(1, $tbl);
$sth->execute;
$row = $sth->fetchrow_arrayref;
dump_img($row, 'png', 'srcphs', 1);
$testnum++;
print "ok $testnum srcphs OK\n";
print HTMLF "\n";
close HTMLF;
$dbh->{PrintError} = 0;
$dbh->do('drop table simpline');
$dbh->do('drop table symline');
$dbh->do('drop table simpbox');
$dbh->do('drop table simpcandle');
$dbh->do('drop table simppie');
$dbh->do('drop table templine');
$dbh->do('drop table templine2');
$dbh->do('drop table logtempline');
$dbh->do('drop table complpa');
$dbh->do('drop table simpbox2');
$dbh->do('drop table compllbb');
$dbh->do('drop table complnbox');
$dbh->do('drop table densesin');
$dbh->do('drop table densecos');
$dbh->do('drop table simpgantt');
$dbh->do('drop table stackbar');
$dbh->do('drop table stackcandle');
$dbh->do('drop table bar3axis');
$dbh->do('drop table stackbar');
$dbh->do('drop table tmstamp');
$dbh->do('drop table floatbar');
$dbh->do('drop table regline');
$dbh->do('drop table fatline');
$dbh->do('drop table midline');
$dbh->do('drop table myquad');
sub dump_img {
my ($row, $fmt, $fname, $nomap) = @_;
open(OUTF, ">t/$fname.$fmt");
binmode OUTF;
print OUTF $$row[0];
close OUTF;
print HTMLF $$row[1], "\n" unless $nomap;
1;
}
sub modify_map {
my ($maphash) = @_;
print 'Bad mapname ', $maphash->{Name}, "\n"
if ($maphash->{Name} ne 'multilinemm');
$maphash->{URL} = 'http://www.presicient.com/tdredux',
$maphash->{AltText} = 'Changed it!',
return 1
if ($maphash->{PLOTNUM} == 1);
$maphash->{URL} = 'http://www.google.com';
$maphash->{AltText} = $maphash->{X} . ' secs, $' . $maphash->{Y};
return 1;
}