diff --git a/#jpgraph/VERSION b/#jpgraph/VERSION
deleted file mode 100644
index 4f1f823c..00000000
--- a/#jpgraph/VERSION
+++ /dev/null
@@ -1 +0,0 @@
-Version: v4.0.2
diff --git a/#jpgraph/src/Examples/accbarex1.php b/#jpgraph/src/Examples/accbarex1.php
deleted file mode 100644
index 01796295..00000000
--- a/#jpgraph/src/Examples/accbarex1.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale("textlin");
-
-$graph->SetShadow();
-$graph->img->SetMargin(40,30,20,40);
-
-// Create the bar plots
-$b1plot = new BarPlot($data1y);
-$b1plot->SetFillColor("orange");
-$b1plot->value->Show();
-$b2plot = new BarPlot($data2y);
-$b2plot->SetFillColor("blue");
-$b2plot->value->Show();
-
-// Create the grouped bar plot
-$gbplot = new AccBarPlot(array($b1plot,$b2plot));
-
-// ...and add it to the graPH
-$graph->Add($gbplot);
-
-$graph->title->Set("Accumulated bar plots");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/accbarframeex01.php b/#jpgraph/src/Examples/accbarframeex01.php
deleted file mode 100644
index 8b56876c..00000000
--- a/#jpgraph/src/Examples/accbarframeex01.php
+++ /dev/null
@@ -1,31 +0,0 @@
-SetScale('textlin');
-$graph->SetMarginColor('white');
-
-// Setup title
-$graph->title->Set('Acc bar with gradient');
-
-// Create the first bar
-$bplot = new BarPlot($datay1);
-$bplot->SetFillGradient('AntiqueWhite2','AntiqueWhite4:0.8',GRAD_VERT);
-$bplot->SetColor('darkred');
-
-// Create the second bar
-$bplot2 = new BarPlot($datay2);
-$bplot2->SetFillGradient('olivedrab1','olivedrab4',GRAD_VERT);
-$bplot2->SetColor('darkgreen');
-
-// And join them in an accumulated bar
-$accbplot = new AccBarPlot(array($bplot,$bplot2));
-$graph->Add($accbplot);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/accbarframeex02.php b/#jpgraph/src/Examples/accbarframeex02.php
deleted file mode 100644
index aa150dec..00000000
--- a/#jpgraph/src/Examples/accbarframeex02.php
+++ /dev/null
@@ -1,33 +0,0 @@
-SetScale('textlin');
-$graph->SetMarginColor('white');
-
-// Setup title
-$graph->title->Set('Acc bar with gradient');
-
-// Create the first bar
-$bplot = new BarPlot($datay1);
-$bplot->SetFillGradient('AntiqueWhite2','AntiqueWhite4:0.8',GRAD_VERT);
-$bplot->SetColor('darkred');
-
-// Create the second bar
-$bplot2 = new BarPlot($datay2);
-$bplot2->SetFillGradient('olivedrab1','olivedrab4',GRAD_VERT);
-$bplot2->SetColor('darkgreen');
-
-// And join them in an accumulated bar
-$accbplot = new AccBarPlot(array($bplot,$bplot2));
-$accbplot->SetColor('red');
-$accbplot->SetWeight(1);
-$graph->Add($accbplot);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/accbarframeex03.php b/#jpgraph/src/Examples/accbarframeex03.php
deleted file mode 100644
index 37f3157b..00000000
--- a/#jpgraph/src/Examples/accbarframeex03.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetScale('textlin');
-$graph->SetMarginColor('white');
-
-// Setup title
-$graph->title->Set('Acc bar with gradient');
-
-// Create the first bar
-$bplot = new BarPlot($datay1);
-$bplot->SetFillGradient('AntiqueWhite2','AntiqueWhite4:0.8',GRAD_VERT);
-$bplot->SetColor('darkred');
-$bplot->SetWeight(0);
-
-// Create the second bar
-$bplot2 = new BarPlot($datay2);
-$bplot2->SetFillGradient('olivedrab1','olivedrab4',GRAD_VERT);
-$bplot2->SetColor('darkgreen');
-$bplot2->SetWeight(0);
-
-// And join them in an accumulated bar
-$accbplot = new AccBarPlot(array($bplot,$bplot2));
-$accbplot->SetColor('darkgray');
-$accbplot->SetWeight(1);
-$graph->Add($accbplot);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/alphabarex1.php b/#jpgraph/src/Examples/alphabarex1.php
deleted file mode 100644
index 81c821cc..00000000
--- a/#jpgraph/src/Examples/alphabarex1.php
+++ /dev/null
@@ -1,75 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(40,80,30,40);
-
-// Adjust the position of the legend box
-$graph->legend->Pos(0.02,0.15);
-
-// Adjust the color for theshadow of the legend
-$graph->legend->SetShadow('darkgray@0.5');
-$graph->legend->SetFillColor('lightblue@0.3');
-
-// Get localised version of the month names
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-// Set a nice summer (in Stockholm) image
-$graph->SetBackgroundImage('stship.jpg',BGIMG_COPY);
-
-// Set axis titles and fonts
-$graph->xaxis->title->Set('Year 2002');
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetColor('white');
-
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->SetColor('white');
-
-$graph->yaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->SetColor('white');
-
-//$graph->ygrid->Show(false);
-$graph->ygrid->SetColor('white@0.5');
-
-// Setup graph title
-$graph->title->Set('Using alpha blending with a background');
-// Some extra margin (from the top)
-$graph->title->SetMargin(3);
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-// Create the three var series we will combine
-$bplot1 = new BarPlot($datay1);
-$bplot2 = new BarPlot($datay2);
-$bplot3 = new BarPlot($datay3);
-
-// Setup the colors with 40% transparency (alpha channel)
-$bplot1->SetFillColor('orange@0.4');
-$bplot2->SetFillColor('brown@0.4');
-$bplot3->SetFillColor('darkgreen@0.4');
-
-// Setup legends
-$bplot1->SetLegend('Label 1');
-$bplot2->SetLegend('Label 2');
-$bplot3->SetLegend('Label 3');
-
-// Setup each bar with a shadow of 50% transparency
-$bplot1->SetShadow('black@0.4');
-$bplot2->SetShadow('black@0.4');
-$bplot3->SetShadow('black@0.4');
-
-$gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3));
-$gbarplot->SetWidth(0.6);
-$graph->Add($gbarplot);
-
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/antispamex01.php b/#jpgraph/src/Examples/antispamex01.php
deleted file mode 100644
index 57fe6099..00000000
--- a/#jpgraph/src/Examples/antispamex01.php
+++ /dev/null
@@ -1,18 +0,0 @@
-Rand(5);
-
-// Stroke random cahllenge
-if( $spam->Stroke() === false ) {
- die('Illegal or no data to plot');
-}
-
-?>
-
diff --git a/#jpgraph/src/Examples/aqua_example.php b/#jpgraph/src/Examples/aqua_example.php
deleted file mode 100644
index 9c5a650b..00000000
--- a/#jpgraph/src/Examples/aqua_example.php
+++ /dev/null
@@ -1,58 +0,0 @@
- array (0 => 79, 1 => -25, 2 => -7, 3 => 85, 4 => -26, 5 => -32, ),
- 1 => array (0 => 76, 1 => 51, 2 => 86, 3 => 12, 4 => -7, 5 => 94, ),
- 2 => array (0 => 49, 1 => 38, 2 => 7, 3 => -40, 4 => 9, 5 => -7, ),
- 3 => array ( 0 => 69, 1 => 96, 2 => 49, 3 => 7, 4 => 92, 5 => -38, ),
- 4 => array ( 0 => 68, 1 => 16, 2 => 82, 3 => -49, 4 => 50, 5 => 7, ),
- 5 => array ( 0 => -37, 1 => 28, 2 => 32, 3 => 6, 4 => 13, 5 => 57, ),
- 6 => array ( 0 => 24, 1 => -11, 2 => 7, 3 => 10, 4 => 51, 5 => 51, ),
- 7 => array ( 0 => 3, 1 => -1, 2 => -12, 3 => 61, 4 => 10, 5 => 47, ),
- 8 => array ( 0 => -47, 1 => -21, 2 => 43, 3 => 53, 4 => 36, 5 => 34, ),
-);
-
-
-// Create the graph. These two calls are always required
-$graph = new Graph(400,300);
-
-$graph->SetScale("textlin");
-if ($theme) {
- $graph->SetTheme(new $theme());
-}
-$theme_class = new AquaTheme;
-$graph->SetTheme($theme_class);
-
-$plot = array();
-// Create the bar plots
-for ($i = 0; $i < 4; $i++) {
- $plot[$i] = new BarPlot($data[$i]);
- $plot[$i]->SetLegend('plot'.($i+1));
-}
-//$acc1 = new AccBarPlot(array($plot[0], $plot[1]));
-//$acc1->value->Show();
-$gbplot = new GroupBarPlot(array($plot[2], $plot[1] ));
-
-for ($i = 4; $i < 8; $i++) {
- $plot[$i] = new LinePlot($data[$i]);
- $plot[$i]->SetLegend('plot'.$i);
- $plot[$i]->value->Show();
-}
-
-$graph->Add($gbplot);
-$graph->Add($plot[4]);
-
-$title = "AquaTheme Example";
-$title = mb_convert_encoding($title,'UTF-8');
-$graph->title->Set($title);
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/axislabelbkgex01.php b/#jpgraph/src/Examples/axislabelbkgex01.php
deleted file mode 100644
index 99c098c2..00000000
--- a/#jpgraph/src/Examples/axislabelbkgex01.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetScale('intlin');
-$graph->SetMargin(30,15,40,30);
-$graph->SetMarginColor('white');
-$graph->SetFrame(true,'blue',3);
-
-$graph->title->Set('Label background');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-$graph->subtitle->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->subtitle->SetColor('darkred');
-$graph->subtitle->Set('"LABELBKG_NONE"');
-
-$graph->SetAxisLabelBackground(LABELBKG_NONE,'orange','red','lightblue','red');
-
-// Use Ariel font
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($ydata);
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/axislabelbkgex02.php b/#jpgraph/src/Examples/axislabelbkgex02.php
deleted file mode 100644
index 2b1740fd..00000000
--- a/#jpgraph/src/Examples/axislabelbkgex02.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale('intlin');
-$graph->SetMargin(30,15,40,30);
-$graph->SetMarginColor('white');
-$graph->SetFrame(true,'blue',3);
-
-$graph->title->Set('Label background');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-$graph->subtitle->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->subtitle->SetColor('darkred');
-$graph->subtitle->Set('"LABELBKG_XAXIS"');
-
-$graph->SetAxisLabelBackground(LABELBKG_XAXIS,'orange','red','lightblue','red');
-
-// Use Ariel font
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($ydata);
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/axislabelbkgex03.php b/#jpgraph/src/Examples/axislabelbkgex03.php
deleted file mode 100644
index 9e557112..00000000
--- a/#jpgraph/src/Examples/axislabelbkgex03.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale('intlin');
-$graph->SetMargin(30,15,40,30);
-$graph->SetMarginColor('white');
-$graph->SetFrame(true,'blue',3);
-
-$graph->title->Set('Label background');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-$graph->subtitle->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->subtitle->SetColor('darkred');
-$graph->subtitle->Set('"LABELBKG_YAXIS"');
-
-$graph->SetAxisLabelBackground(LABELBKG_YAXIS,'orange','red','lightblue','red');
-
-// Use Ariel font
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($ydata);
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/axislabelbkgex04.php b/#jpgraph/src/Examples/axislabelbkgex04.php
deleted file mode 100644
index eb55a5ff..00000000
--- a/#jpgraph/src/Examples/axislabelbkgex04.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale('intlin');
-$graph->SetMargin(30,15,40,30);
-$graph->SetMarginColor('white');
-$graph->SetFrame(true,'blue',3);
-
-$graph->title->Set('Label background');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-$graph->subtitle->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->subtitle->SetColor('darkred');
-$graph->subtitle->Set('"LABELBKG_YAXISFULL"');
-
-$graph->SetAxisLabelBackground(LABELBKG_YAXISFULL,'orange','red','lightblue','red');
-
-// Use Ariel font
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($ydata);
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/axislabelbkgex05.php b/#jpgraph/src/Examples/axislabelbkgex05.php
deleted file mode 100644
index 29a04f07..00000000
--- a/#jpgraph/src/Examples/axislabelbkgex05.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale('intlin');
-$graph->SetMargin(30,15,40,30);
-$graph->SetMarginColor('white');
-$graph->SetFrame(true,'blue',3);
-
-$graph->title->Set('Label background');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-$graph->subtitle->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->subtitle->SetColor('darkred');
-$graph->subtitle->Set('"LABELBKG_XAXISFULL"');
-
-$graph->SetAxisLabelBackground(LABELBKG_XAXISFULL,'orange','red','lightblue','red');
-
-// Use Ariel font
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($ydata);
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/axislabelbkgex06.php b/#jpgraph/src/Examples/axislabelbkgex06.php
deleted file mode 100644
index 8ad0d812..00000000
--- a/#jpgraph/src/Examples/axislabelbkgex06.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale('intlin');
-$graph->SetMargin(30,15,40,30);
-$graph->SetMarginColor('white');
-$graph->SetFrame(true,'blue',3);
-
-$graph->title->Set('Label background');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-$graph->subtitle->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->subtitle->SetColor('darkred');
-$graph->subtitle->Set('"LABELBKG_XYFULL"');
-
-$graph->SetAxisLabelBackground(LABELBKG_XYFULL,'orange','red','lightblue','red');
-
-// Use Ariel font
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($ydata);
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/axislabelbkgex07.php b/#jpgraph/src/Examples/axislabelbkgex07.php
deleted file mode 100644
index c23d07fc..00000000
--- a/#jpgraph/src/Examples/axislabelbkgex07.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale('intlin');
-$graph->SetMargin(30,15,40,30);
-$graph->SetMarginColor('white');
-$graph->SetFrame(true,'blue',3);
-
-$graph->title->Set('Label background');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-$graph->subtitle->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->subtitle->SetColor('darkred');
-$graph->subtitle->Set('"LABELBKG_XY"');
-
-$graph->SetAxisLabelBackground(LABELBKG_XY,'orange','red','lightblue','red');
-
-// Use Ariel font
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($ydata);
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/background_type_ex0.php b/#jpgraph/src/Examples/background_type_ex0.php
deleted file mode 100644
index 1c4e7456..00000000
--- a/#jpgraph/src/Examples/background_type_ex0.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,40,50,50);
-
-// Setup the grid and plotarea box
-$graph->ygrid->SetLineStyle('dashed');
-$graph->ygrid->setColor('darkgray');
-$graph->SetBox(true);
-
-// Steup graph titles
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->Set('Using background image');
-$graph->subtitle->SetFont(FF_COURIER,FS_BOLD,11);
-$graph->subtitle->Set('"BGIMG_COPY"');
-$graph->subtitle->SetColor('darkred');
-
-// Add background with 25% mix
-$graph->SetBackgroundImage('heat1.jpg',BGIMG_COPY);
-$graph->SetBackgroundImageMix(25);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor("blue");
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/background_type_ex1.php b/#jpgraph/src/Examples/background_type_ex1.php
deleted file mode 100644
index cdd3cced..00000000
--- a/#jpgraph/src/Examples/background_type_ex1.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,40,50,50);
-
-// Setup the grid and plotarea box
-$graph->ygrid->SetLineStyle('dashed');
-$graph->ygrid->setColor('darkgray');
-$graph->SetBox(true);
-
-// Steup graph titles
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->Set('Using background image');
-$graph->subtitle->SetFont(FF_COURIER,FS_BOLD,11);
-$graph->subtitle->Set('"BGIMG_CENTER"');
-$graph->subtitle->SetColor('darkred');
-
-// Add background with 25% mix
-$graph->SetBackgroundImage('heat1.jpg',BGIMG_CENTER);
-$graph->SetBackgroundImageMix(25);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor("blue");
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/background_type_ex2.php b/#jpgraph/src/Examples/background_type_ex2.php
deleted file mode 100644
index 932f7a52..00000000
--- a/#jpgraph/src/Examples/background_type_ex2.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,40,50,50);
-
-// Setup the grid and plotarea box
-$graph->ygrid->SetLineStyle('dashed');
-$graph->ygrid->setColor('darkgray');
-$graph->SetBox(true);
-
-// Steup graph titles
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->Set('Using background image');
-$graph->subtitle->SetFont(FF_COURIER,FS_BOLD,11);
-$graph->subtitle->Set('"BGIMG_FREE"');
-$graph->subtitle->SetColor('darkred');
-
-// Add background with 25% mix
-$graph->SetBackgroundImage('heat1.jpg',BGIMG_FREE);
-$graph->SetBackgroundImageMix(25);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor("blue");
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/background_type_ex3.php b/#jpgraph/src/Examples/background_type_ex3.php
deleted file mode 100644
index 8b265c85..00000000
--- a/#jpgraph/src/Examples/background_type_ex3.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,40,50,50);
-
-// Setup the grid and plotarea box
-$graph->ygrid->SetLineStyle('dashed');
-$graph->ygrid->setColor('darkgray');
-$graph->SetBox(true);
-
-// Steup graph titles
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->Set('Using background image');
-$graph->subtitle->SetFont(FF_COURIER,FS_BOLD,11);
-$graph->subtitle->Set('"BGIMG_FILLPLOT"');
-$graph->subtitle->SetColor('darkred');
-
-// Add background with 25% mix
-$graph->SetBackgroundImage('heat1.jpg',BGIMG_FILLPLOT);
-$graph->SetBackgroundImageMix(25);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor("blue");
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/background_type_ex4.php b/#jpgraph/src/Examples/background_type_ex4.php
deleted file mode 100644
index 3ff1ceba..00000000
--- a/#jpgraph/src/Examples/background_type_ex4.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,40,50,50);
-
-// Setup the grid and plotarea box
-$graph->ygrid->SetLineStyle('dashed');
-$graph->ygrid->setColor('darkgray');
-$graph->SetBox(true);
-
-// Steup graph titles
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->Set('Using background image');
-$graph->subtitle->SetFont(FF_COURIER,FS_BOLD,11);
-$graph->subtitle->Set('"BGIMG_FILLFRAME"');
-$graph->subtitle->SetColor('darkred');
-
-// Add background with 25% mix
-$graph->SetBackgroundImage('heat1.jpg',BGIMG_FILLFRAME);
-$graph->SetBackgroundImageMix(25);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor("blue");
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/backgroundex01.php b/#jpgraph/src/Examples/backgroundex01.php
deleted file mode 100644
index fac8e937..00000000
--- a/#jpgraph/src/Examples/backgroundex01.php
+++ /dev/null
@@ -1,51 +0,0 @@
-img->SetMargin(40,180,40,40);
-$graph->SetBackgroundImage("tiger_bkg.png",BGIMG_FILLPLOT);
-
-$graph->img->SetAntiAliasing("white");
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->title->Set("Background image");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Slightly adjust the legend from it's default position in the
-// top right corner.
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Create the first line
-$p1 = new LinePlot($datay);
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$p1->SetColor("blue");
-$p1->SetCenter();
-$p1->SetLegend("Triumph Tiger -98");
-$graph->Add($p1);
-
-// ... and the second
-$p2 = new LinePlot($data2y);
-$p2->mark->SetType(MARK_STAR);
-$p2->mark->SetFillColor("red");
-$p2->mark->SetWidth(4);
-$p2->SetColor("red");
-$p2->SetCenter();
-$p2->SetLegend("New tiger -99");
-$graph->Add($p2);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/backgroundex02.php b/#jpgraph/src/Examples/backgroundex02.php
deleted file mode 100644
index 542be5d1..00000000
--- a/#jpgraph/src/Examples/backgroundex02.php
+++ /dev/null
@@ -1,51 +0,0 @@
-img->SetMargin(40,180,40,40);
-$graph->SetBackgroundImage("tiger_bkg.png",BGIMG_FILLFRAME);
-
-$graph->img->SetAntiAliasing();
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->title->Set("Background image");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Slightly adjust the legend from it's default position in the
-// top right corner.
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Create the first line
-$p1 = new LinePlot($datay);
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$p1->SetColor("blue");
-$p1->SetCenter();
-$p1->SetLegend("Triumph Tiger -98");
-$graph->Add($p1);
-
-// ... and the second
-$p2 = new LinePlot($data2y);
-$p2->mark->SetType(MARK_STAR);
-$p2->mark->SetFillColor("red");
-$p2->mark->SetWidth(4);
-$p2->SetColor("red");
-$p2->SetCenter();
-$p2->SetLegend("New tiger -99");
-$graph->Add($p2);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/backgroundex03.php b/#jpgraph/src/Examples/backgroundex03.php
deleted file mode 100644
index a1c1337d..00000000
--- a/#jpgraph/src/Examples/backgroundex03.php
+++ /dev/null
@@ -1,51 +0,0 @@
-img->SetMargin(40,180,40,40);
-$graph->SetBackgroundImage("tiger_bkg.png",BGIMG_COPY);
-
-$graph->img->SetAntiAliasing("white");
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->title->Set("Background image");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Slightly adjust the legend from it's default position in the
-// top right corner.
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Create the first line
-$p1 = new LinePlot($datay);
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$p1->SetColor("blue");
-$p1->SetCenter();
-$p1->SetLegend("Triumph Tiger -98");
-$graph->Add($p1);
-
-// ... and the second
-$p2 = new LinePlot($data2y);
-$p2->mark->SetType(MARK_STAR);
-$p2->mark->SetFillColor("red");
-$p2->mark->SetWidth(4);
-$p2->SetColor("red");
-$p2->SetCenter();
-$p2->SetLegend("New tiger -99");
-$graph->Add($p2);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/balloonex1.php b/#jpgraph/src/Examples/balloonex1.php
deleted file mode 100644
index c963d76c..00000000
--- a/#jpgraph/src/Examples/balloonex1.php
+++ /dev/null
@@ -1,56 +0,0 @@
-SetScale("linlin");
-$graph->img->SetMargin(40,100,40,40);
-$graph->SetShadow();
-$graph->title->Set("Example of ballon scatter plot");
-// Use a lot of grace to get large scales
-$graph->yaxis->scale->SetGrace(50,10);
-
-// Make sure X-axis as at the bottom of the graph
-$graph->xaxis->SetPos('min');
-
-// Create the scatter plot
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-
-// Uncomment the following two lines to display the values
-$sp1->value->Show();
-$sp1->value->SetFont(FF_FONT1,FS_BOLD);
-
-// Specify the callback
-$sp1->mark->SetCallback("FCallback");
-
-// Setup the legend for plot
-$sp1->SetLegend('Year 2002');
-
-// Add the scatter plot to the graph
-$graph->Add($sp1);
-
-// ... and send to browser
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/balloonex2.php b/#jpgraph/src/Examples/balloonex2.php
deleted file mode 100644
index 257a6648..00000000
--- a/#jpgraph/src/Examples/balloonex2.php
+++ /dev/null
@@ -1,81 +0,0 @@
-SetScale("intlin");
-$graph->SetMargin(40,40,40,40);
-$graph->SetMarginColor('wheat');
-
-$graph->title->Set("Example of ballon scatter plot with X,Y callback");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->SetMargin(10);
-
-// Use a lot of grace to get large scales since the ballon have
-// size and we don't want them to collide with the X-axis
-$graph->yaxis->scale->SetGrace(50,10);
-$graph->xaxis->scale->SetGrace(50,10);
-
-// Make sure X-axis as at the bottom of the graph and not at the default Y=0
-$graph->xaxis->SetPos('min');
-
-// Set X-scale to start at 0
-$graph->xscale->SetAutoMin(0);
-
-// Create the scatter plot
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-
-// Uncomment the following two lines to display the values
-$sp1->value->Show();
-$sp1->value->SetFont(FF_FONT1,FS_BOLD);
-
-// Specify the callback
-$sp1->mark->SetCallbackYX("FCallback");
-
-// Add the scatter plot to the graph
-$graph->Add($sp1);
-
-// ... and send to browser
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/bar2scalesex1.php b/#jpgraph/src/Examples/bar2scalesex1.php
deleted file mode 100644
index 9248e7c1..00000000
--- a/#jpgraph/src/Examples/bar2scalesex1.php
+++ /dev/null
@@ -1,48 +0,0 @@
-title->Set('Example with 2 scale bars');
-
-// Setup Y and Y2 scales with some "grace"
-$graph->SetScale("textlin");
-$graph->SetY2Scale("lin");
-$graph->yaxis->scale->SetGrace(30);
-$graph->y2axis->scale->SetGrace(30);
-
-//$graph->ygrid->Show(true,true);
-$graph->ygrid->SetColor('gray','lightgray@0.5');
-
-// Setup graph colors
-$graph->SetMarginColor('white');
-$graph->y2axis->SetColor('darkred');
-
-
-// Create the "dummy" 0 bplot
-$bplotzero = new BarPlot($datazero);
-
-// Create the "Y" axis group
-$ybplot1 = new BarPlot($datay);
-$ybplot1->value->Show();
-$ybplot = new GroupBarPlot(array($ybplot1,$bplotzero));
-
-// Create the "Y2" axis group
-$ybplot2 = new BarPlot($datay2);
-$ybplot2->value->Show();
-$ybplot2->value->SetColor('darkred');
-$ybplot2->SetFillColor('darkred');
-$y2bplot = new GroupBarPlot(array($bplotzero,$ybplot2));
-
-// Add the grouped bar plots to the graph
-$graph->Add($ybplot);
-$graph->AddY2($y2bplot);
-
-// .. and finally stroke the image back to browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bar_csimex1.php b/#jpgraph/src/Examples/bar_csimex1.php
deleted file mode 100644
index 6ae7dbfe..00000000
--- a/#jpgraph/src/Examples/bar_csimex1.php
+++ /dev/null
@@ -1,52 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(60,30,20,40);
-$graph->yaxis->SetTitleMargin(45);
-$graph->yaxis->scale->SetGrace(30);
-$graph->SetShadow();
-
-// Turn the tickmarks
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Create targets for the image maps. One for each column
-$targ=array("bar_clsmex1.php#1","bar_clsmex1.php#2","bar_clsmex1.php#3","bar_clsmex1.php#4","bar_clsmex1.php#5","bar_clsmex1.php#6");
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-$bplot->SetCSIMTargets($targ,$alts);
-$bplot->SetFillColor("orange");
-
-// Use a shadow on the bar graphs (just use the default settings)
-$bplot->SetShadow();
-$bplot->value->SetFormat(" $ %2.1f",70);
-$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,9);
-$bplot->value->SetColor("blue");
-$bplot->value->Show();
-
-$graph->Add($bplot);
-
-$graph->title->Set("Image maps barex1");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Send back the HTML page which will call this script again
-// to retrieve the image.
-$graph->StrokeCSIM();
-
-
-?>
diff --git a/#jpgraph/src/Examples/bar_csimex2.php b/#jpgraph/src/Examples/bar_csimex2.php
deleted file mode 100644
index 5a0cbce8..00000000
--- a/#jpgraph/src/Examples/bar_csimex2.php
+++ /dev/null
@@ -1,51 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(40,30,20,40);
-$graph->SetShadow();
-
-// Create the bar plots
-$b1plot = new BarPlot($data1y);
-$b1plot->SetFillColor("orange");
-$targ=array("bar_clsmex2.php#1","bar_clsmex2.php#2","bar_clsmex2.php#3",
-"bar_clsmex2.php#4","bar_clsmex2.php#5","bar_clsmex2.php#6");
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-$b1plot->SetCSIMTargets($targ,$alts);
-
-$b2plot = new BarPlot($data2y);
-$b2plot->SetFillColor("blue");
-$targ=array("bar_clsmex2.php#7","bar_clsmex2.php#8","bar_clsmex2.php#9",
-"bar_clsmex2.php#10","bar_clsmex2.php#11","bar_clsmex2.php#12");
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-$b2plot->SetCSIMTargets($targ,$alts);
-
-// Create the grouped bar plot
-$abplot = new AccBarPlot(array($b1plot,$b2plot));
-
-$abplot->SetShadow();
-$abplot->value->Show();
-
-// ...and add it to the graPH
-$graph->Add($abplot);
-
-$graph->title->Set("Image map barex2");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-
-// Send back the HTML page which will call this script again
-// to retrieve the image.
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/bar_csimex3.php b/#jpgraph/src/Examples/bar_csimex3.php
deleted file mode 100644
index 6640319d..00000000
--- a/#jpgraph/src/Examples/bar_csimex3.php
+++ /dev/null
@@ -1,88 +0,0 @@
-SetAngle(90);
-$graph->SetScale("textlin");
-
-// The negative margins are necessary since we
-// have rotated the image 90 degress and shifted the
-// meaning of width, and height. This means that the
-// left and right margins now becomes top and bottom
-// calculated with the image width and not the height.
-$graph->img->SetMargin(-80,-80,210,210);
-
-$graph->SetMarginColor('white');
-
-// Setup title for graph
-$graph->title->Set('Horizontal bar graph');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->subtitle->Set("With image map\nNote: The URL just points back to this image");
-
-// Setup X-axis.
-$graph->xaxis->SetTitle("X-title",'center');
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetAngle(90);
-$graph->xaxis->SetTitleMargin(30);
-$graph->xaxis->SetLabelMargin(15);
-$graph->xaxis->SetLabelAlign('right','center');
-
-// Setup Y-axis
-
-// First we want it at the bottom, i.e. the 'max' value of the
-// x-axis
-$graph->yaxis->SetPos('max');
-
-// Arrange the title
-$graph->yaxis->SetTitle("Turnaround (mkr)",'center');
-$graph->yaxis->SetTitleSide(SIDE_RIGHT);
-$graph->yaxis->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->yaxis->title->SetAngle(0);
-$graph->yaxis->title->Align('center','top');
-$graph->yaxis->SetTitleMargin(30);
-
-// Arrange the labels
-$graph->yaxis->SetLabelSide(SIDE_RIGHT);
-$graph->yaxis->SetLabelAlign('center','top');
-
-// Create the bar plots with image maps
-$b1plot = new BarPlot($data1y);
-$b1plot->SetFillColor("orange");
-$targ=array("bar_clsmex2.php#1","bar_clsmex2.php#2","bar_clsmex2.php#3",
- "bar_clsmex2.php#4","bar_clsmex2.php#5","bar_clsmex2.php#6");
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-$b1plot->SetCSIMTargets($targ,$alts);
-
-$b2plot = new BarPlot($data2y);
-$b2plot->SetFillColor("blue");
-$targ=array("bar_clsmex2.php#7","bar_clsmex2.php#8","bar_clsmex2.php#9",
- "bar_clsmex2.php#10","bar_clsmex2.php#11","bar_clsmex2.php#12");
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-$b2plot->SetCSIMTargets($targ,$alts);
-
-// Create the accumulated bar plot
-$abplot = new AccBarPlot(array($b1plot,$b2plot));
-$abplot->SetShadow();
-
-// We want to display the value of each bar at the top
-$abplot->value->Show();
-$abplot->value->SetFont(FF_FONT1,FS_NORMAL);
-$abplot->value->SetAlign('left','center');
-$abplot->value->SetColor("black","darkred");
-$abplot->value->SetFormat('%.1f mkr');
-
-// ...and add it to the graph
-$graph->Add($abplot);
-
-// Send back the HTML page which will call this script again
-// to retrieve the image.
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/barcode_errhandling_ex0.php b/#jpgraph/src/Examples/barcode_errhandling_ex0.php
deleted file mode 100644
index 4f5b5393..00000000
--- a/#jpgraph/src/Examples/barcode_errhandling_ex0.php
+++ /dev/null
@@ -1,16 +0,0 @@
-Stroke('abc123');
-} catch( JpGraphException $e ) {
- //echo 'Error: ' . $e->getMessage()."\n";
- JpGraphError::Raise($e->getMessage());
-}
-
-?>
diff --git a/#jpgraph/src/Examples/barcode_ex0.php b/#jpgraph/src/Examples/barcode_ex0.php
deleted file mode 100644
index 021b5c7c..00000000
--- a/#jpgraph/src/Examples/barcode_ex0.php
+++ /dev/null
@@ -1,11 +0,0 @@
-Stroke('ABC123');
-
-?>
diff --git a/#jpgraph/src/Examples/barcode_ex1.php b/#jpgraph/src/Examples/barcode_ex1.php
deleted file mode 100644
index df7653b5..00000000
--- a/#jpgraph/src/Examples/barcode_ex1.php
+++ /dev/null
@@ -1,14 +0,0 @@
-SetModuleWidth(2);
-$e->SetHeight(20);
-echo nl2br($e->Stroke('3125134772'));
-
-
-?>
diff --git a/#jpgraph/src/Examples/barcode_ex2.php b/#jpgraph/src/Examples/barcode_ex2.php
deleted file mode 100644
index 8fce58e6..00000000
--- a/#jpgraph/src/Examples/barcode_ex2.php
+++ /dev/null
@@ -1,14 +0,0 @@
-SetModuleWidth(2);
-$e->SetHeight(70);
-$ps = $e->Stroke('3125134772');
-echo nl2br(htmlspecialchars($ps));
-
-?>
diff --git a/#jpgraph/src/Examples/barcode_ex3.php b/#jpgraph/src/Examples/barcode_ex3.php
deleted file mode 100644
index a63f4ad4..00000000
--- a/#jpgraph/src/Examples/barcode_ex3.php
+++ /dev/null
@@ -1,17 +0,0 @@
-";
-$encoder = BarcodeFactory::Create(ENCODING_CODEI25);
-$e = BackendFactory::Create(BACKEND_PS,$encoder);
-$e->SetModuleWidth(2);
-$e->SetHeight(70);
-$e->SetEPS();
-$ps = $e->Stroke('3125134772');
-echo nl2br(htmlspecialchars($ps));
-
-
-?>
diff --git a/#jpgraph/src/Examples/barcode_ex4.php b/#jpgraph/src/Examples/barcode_ex4.php
deleted file mode 100644
index 721b56ba..00000000
--- a/#jpgraph/src/Examples/barcode_ex4.php
+++ /dev/null
@@ -1,12 +0,0 @@
-SetModuleWidth(2);
-$e->Stroke('1234');
-
-?>
diff --git a/#jpgraph/src/Examples/barcode_usps_example.php b/#jpgraph/src/Examples/barcode_usps_example.php
deleted file mode 100644
index 80469bea..00000000
--- a/#jpgraph/src/Examples/barcode_usps_example.php
+++ /dev/null
@@ -1,74 +0,0 @@
-_USPS_chkd(substr($data,8));
- $data = '420'. $aZIP . '~191' . $aServiceType . $aDUNS . $aSeqNbr;
- return $data . $cd;
- }
-
- // Get type 2 of confirmation code (without ZIP)
- function GetPIC($aServiceType,$aDUNS,$aSeqNbr) {
- // Convert to USPS format with AI=91
- $data = '91' . $aServiceType . $aDUNS . $aSeqNbr;
- $cd = $this->_USPS_chkd($data);
- return $data . $cd;
- }
-
-}
-
-$usps = new USPS_Confirmation();
-$zip = '92663';
-$service = '21';
-$DUNS = '805213907';
-$seqnr = '04508735';
-$data = $usps->GetPICwithZIP($zip,$service,$DUNS,$seqnr);
-//$data = $usps->GetPIC('01','123456789','00000001');
-
-$encoder = BarcodeFactory::Create(ENCODING_EAN128);
-$e = BackendFactory::Create(BACKEND_IMAGE,$encoder);
-$e->SetModuleWidth(2);
-$e->SetFont(FF_ARIAL,FS_NORMAL,14);
-$e->Stroke($data);
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/barcsim_details.php b/#jpgraph/src/Examples/barcsim_details.php
deleted file mode 100644
index 68fb2166..00000000
--- a/#jpgraph/src/Examples/barcsim_details.php
+++ /dev/null
@@ -1,10 +0,0 @@
-'.basename(__FILE__).'.';
-}
-else {
- echo 'Some details on bar with id='.$_GET['id'];
-}
-
-?>
diff --git a/#jpgraph/src/Examples/barcsim_popup.php b/#jpgraph/src/Examples/barcsim_popup.php
deleted file mode 100644
index 57864584..00000000
--- a/#jpgraph/src/Examples/barcsim_popup.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Create targets for the image maps so that the details are opened in a separate window
-$fmtStr = "javascript:window.open('barcsim_details.php?id=%d','_new','width=500,height=300');void(0)";
-$n = count($datay);
-$targ=array();
-$alts=array();
-for($i=0; $i < $n; ++$i) {
- $targ[$i] = sprintf($fmtStr,$i+1);
- $alts[$i] = 'val=%d';
- // Note: The format placeholder val=%d will be replaced by the actual value in the ouput HTML by the
- // library so that when the user hoovers the mouse over the bar the actual numerical value of the bar
- // will be dísplayed
-}
-$bplot->SetCSIMTargets($targ,$alts);
-
-// Add plot to graph
-$graph->Add($bplot);
-
-// Setup the title, also wih a CSIM area
-$graph->title->Set("CSIM with popup windows");
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-// Assume we can give more details on the graph
-$graph->title->SetCSIMTarget(sprintf($fmtStr,-1),'Title for Bar');
-
-// Send back the HTML page which will call this script again to retrieve the image.
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/barformatcallbackex1.php b/#jpgraph/src/Examples/barformatcallbackex1.php
deleted file mode 100644
index f49a9e28..00000000
--- a/#jpgraph/src/Examples/barformatcallbackex1.php
+++ /dev/null
@@ -1,30 +0,0 @@
-SetScale("textlin");
-
-// Create a bar plots
-$bar1 = new BarPlot($data);
-
-// Setup the callback function
-$bar1->value->SetFormatCallback("cbFmtPercentage");
-$bar1->value->Show();
-
-// Add the plot to the graph
-$graph->Add($bar1);
-
-// .. and send the graph back to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradex1.php b/#jpgraph/src/Examples/bargradex1.php
deleted file mode 100644
index e325223f..00000000
--- a/#jpgraph/src/Examples/bargradex1.php
+++ /dev/null
@@ -1,47 +0,0 @@
-img->SetMargin(60,20,35,75);
-$graph->SetScale("textlin");
-$graph->SetMarginColor("lightblue:1.1");
-$graph->SetShadow();
-
-// Set up the title for the graph
-$graph->title->Set("Bar gradient with left reflection");
-$graph->title->SetMargin(8);
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-$graph->title->SetColor("darkred");
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-
-// Show 0 label on Y-axis (default is not to show)
-$graph->yscale->ticks->SupressZeroLabel(false);
-
-// Setup X-axis labels
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetLabelAngle(50);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy:0.9","navy:1.85",GRAD_LEFT_REFLECTION);
-
-// Set color for the frame of each bar
-$bplot->SetColor("white");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradex2.php b/#jpgraph/src/Examples/bargradex2.php
deleted file mode 100644
index 02da925d..00000000
--- a/#jpgraph/src/Examples/bargradex2.php
+++ /dev/null
@@ -1,48 +0,0 @@
-img->SetMargin(60,20,30,50);
-$graph->SetScale("textlin");
-$graph->SetMarginColor("silver");
-$graph->SetShadow();
-
-// Set up the title for the graph
-$graph->title->Set("Example negative bars");
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,18);
-$graph->title->SetColor("darkred");
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,12);
-$graph->xaxis->SetColor("black","red");
-$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,11);
-
-// Show 0 label on Y-axis (default is not to show)
-$graph->yscale->ticks->SupressZeroLabel(false);
-
-// Setup X-axis labels
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetLabelAngle(50);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","steelblue",GRAD_MIDVER);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradex3.php b/#jpgraph/src/Examples/bargradex3.php
deleted file mode 100644
index 8a3f99d5..00000000
--- a/#jpgraph/src/Examples/bargradex3.php
+++ /dev/null
@@ -1,50 +0,0 @@
-img->SetMargin(60,20,30,50);
-$graph->SetScale("textlin");
-$graph->SetMarginColor("silver");
-$graph->SetShadow();
-
-// Set up the title for the graph
-$graph->title->Set("Example negative bars");
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,16);
-$graph->title->SetColor("darkred");
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-
-// Show 0 label on Y-axis (default is not to show)
-$graph->yscale->ticks->SupressZeroLabel(false);
-
-// Setup X-axis labels
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetLabelAngle(50);
-
-// Set X-axis at the minimum value of Y-axis (default will be at 0)
-$graph->xaxis->SetPos("min"); // "min" will position the x-axis at the minimum value of the Y-axis
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","steelblue",GRAD_MIDVER);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradex4.php b/#jpgraph/src/Examples/bargradex4.php
deleted file mode 100644
index 7de203ab..00000000
--- a/#jpgraph/src/Examples/bargradex4.php
+++ /dev/null
@@ -1,47 +0,0 @@
-img->SetMargin(60,30,30,40);
-$graph->SetScale("textlin");
-$graph->SetMarginColor("teal");
-$graph->SetShadow();
-
-// Set up the title for the graph
-$graph->title->Set("Bargraph with small variations");
-$graph->title->SetColor("white");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-
-// Setup color for axis and labels
-$graph->xaxis->SetColor("black","white");
-$graph->yaxis->SetColor("black","white");
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-
-// Setup X-axis title (color & font)
-$graph->xaxis->title->Set("X-axis");
-$graph->xaxis->title->SetColor("white");
-$graph->xaxis->title->SetFont(FF_VERDANA,FS_BOLD,10);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$tcol=array(100,100,255);
-$fcol=array(255,100,100);
-$bplot->SetFillGradient($fcol,$tcol,GRAD_HOR);
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradex5.php b/#jpgraph/src/Examples/bargradex5.php
deleted file mode 100644
index e0122925..00000000
--- a/#jpgraph/src/Examples/bargradex5.php
+++ /dev/null
@@ -1,52 +0,0 @@
-img->SetMargin(60,30,30,40);
-$graph->SetScale("textlin");
-$graph->SetMarginColor("teal");
-$graph->SetShadow();
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// This is how you make the bar graph start from something other than 0
-$bplot->SetYMin(0.302);
-
-// Setup color for gradient fill style
-$tcol=array(100,100,255);
-$fcol=array(255,100,100);
-$bplot->SetFillGradient($fcol,$tcol,GRAD_HOR);
-$bplot->SetFillColor("orange");
-$graph->Add($bplot);
-
-// Set up the title for the graph
-$graph->title->Set("Bargraph which doesn't start from y=0");
-$graph->title->SetColor("yellow");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-
-// Setup color for axis and labels
-$graph->xaxis->SetColor("black","white");
-$graph->yaxis->SetColor("black","white");
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-
-// Setup X-axis title (color & font)
-$graph->xaxis->title->Set("X-axis");
-$graph->xaxis->title->SetColor("white");
-$graph->xaxis->title->SetFont(FF_VERDANA,FS_BOLD,10);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradex6.php b/#jpgraph/src/Examples/bargradex6.php
deleted file mode 100644
index 43bf9664..00000000
--- a/#jpgraph/src/Examples/bargradex6.php
+++ /dev/null
@@ -1,51 +0,0 @@
-img->SetMargin(60,150,30,50);
-$graph->SetScale("textlin");
-$graph->SetMarginColor("silver");
-$graph->SetShadow();
-
-// Set up the title for the graph
-$graph->title->Set("Example negative bars");
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,16);
-$graph->title->SetColor("darkred");
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
-
-// Show 0 label on Y-axis (default is not to show)
-$graph->yscale->ticks->SupressZeroLabel(false);
-
-// Setup X-axis labels
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetLabelAngle(50);
-
-// Set X-axis at the minimum value of Y-axis (default will be at 0)
-$graph->xaxis->SetPos("min"); // "min" will position the x-axis at the minimum value of the Y-axis
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-$bplot->SetLegend("Result 1999","blue");
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","steelblue",GRAD_MIDVER);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradsmallex1.php b/#jpgraph/src/Examples/bargradsmallex1.php
deleted file mode 100644
index 83908a97..00000000
--- a/#jpgraph/src/Examples/bargradsmallex1.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(25,15,25,25);
-
-$graph->title->Set('"GRAD_MIDVER"');
-$graph->title->SetColor('darkred');
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->yaxis->SetFont(FF_FONT1);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","lightsteelblue",GRAD_MIDVER);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradsmallex2.php b/#jpgraph/src/Examples/bargradsmallex2.php
deleted file mode 100644
index 1aa1037a..00000000
--- a/#jpgraph/src/Examples/bargradsmallex2.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(25,15,25,25);
-
-$graph->title->Set('"GRAD_MIDHOR"');
-$graph->title->SetColor('darkred');
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->yaxis->SetFont(FF_FONT1);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","lightsteelblue",GRAD_MIDHOR);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradsmallex3.php b/#jpgraph/src/Examples/bargradsmallex3.php
deleted file mode 100644
index c5d31c13..00000000
--- a/#jpgraph/src/Examples/bargradsmallex3.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(25,15,25,25);
-
-$graph->title->Set('"GRAD_HOR"');
-$graph->title->SetColor('darkred');
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->yaxis->SetFont(FF_FONT1);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","lightsteelblue",GRAD_HOR);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradsmallex4.php b/#jpgraph/src/Examples/bargradsmallex4.php
deleted file mode 100644
index 030942d5..00000000
--- a/#jpgraph/src/Examples/bargradsmallex4.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(25,15,25,25);
-
-$graph->title->Set('"GRAD_VER"');
-$graph->title->SetColor('darkred');
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->yaxis->SetFont(FF_FONT1);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","lightsteelblue",GRAD_VER);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradsmallex5.php b/#jpgraph/src/Examples/bargradsmallex5.php
deleted file mode 100644
index 8028269f..00000000
--- a/#jpgraph/src/Examples/bargradsmallex5.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(25,15,25,25);
-
-$graph->title->Set('"GRAD_WIDE_MIDVER"');
-$graph->title->SetColor('darkred');
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->yaxis->SetFont(FF_FONT1);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","lightsteelblue",GRAD_WIDE_MIDVER);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradsmallex6.php b/#jpgraph/src/Examples/bargradsmallex6.php
deleted file mode 100644
index 9b1e45b8..00000000
--- a/#jpgraph/src/Examples/bargradsmallex6.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(25,15,25,25);
-
-$graph->title->Set('"GRAD_WIDE_MIDHOR"');
-$graph->title->SetColor('darkred');
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->yaxis->SetFont(FF_FONT1);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","lightsteelblue",GRAD_WIDE_MIDHOR);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradsmallex7.php b/#jpgraph/src/Examples/bargradsmallex7.php
deleted file mode 100644
index 5f011aa9..00000000
--- a/#jpgraph/src/Examples/bargradsmallex7.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(25,15,25,25);
-
-$graph->title->Set('"GRAD_CENTER"');
-$graph->title->SetColor('darkred');
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->yaxis->SetFont(FF_FONT1);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient("navy","lightsteelblue",GRAD_CENTER);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bargradsmallex8.php b/#jpgraph/src/Examples/bargradsmallex8.php
deleted file mode 100644
index f95cb49a..00000000
--- a/#jpgraph/src/Examples/bargradsmallex8.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(25,15,25,25);
-
-$graph->title->Set('"GRAD_RAISED_PANEL"');
-$graph->title->SetColor('darkred');
-
-// Setup font for axis
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->yaxis->SetFont(FF_FONT1);
-
-// Create the bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetWidth(0.6);
-
-// Setup color for gradient fill style
-$bplot->SetFillGradient('navy','orange',GRAD_RAISED_PANEL);
-
-// Set color for the frame of each bar
-$bplot->SetColor("navy");
-$graph->Add($bplot);
-
-// Finally send the graph to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/barimgex1.php b/#jpgraph/src/Examples/barimgex1.php
deleted file mode 100644
index 76aee8f9..00000000
--- a/#jpgraph/src/Examples/barimgex1.php
+++ /dev/null
@@ -1,29 +0,0 @@
-SetScale("textlin");
-
-$graph->title->Set('Images on top of bars');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,13);
-
-$graph->SetTitleBackground('lightblue:1.1',TITLEBKG_STYLE1,TITLEBKG_FRAME_BEVEL);
-
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-$bplot->SetWidth(0.5);
-
-$lplot = new LinePlot($datay);
-$lplot->SetColor('white@1');
-$lplot->SetBarCenter();
-$lplot->mark->SetType(MARK_IMG_LBALL,'red');
-
-$graph->Add($bplot);
-$graph->Add($lplot);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/barintex1.php b/#jpgraph/src/Examples/barintex1.php
deleted file mode 100644
index 9ba063d5..00000000
--- a/#jpgraph/src/Examples/barintex1.php
+++ /dev/null
@@ -1,48 +0,0 @@
-img->SetMargin(40,30,30,40);
-$graph->SetScale("textint");
-$graph->SetShadow();
-$graph->SetFrame(false); // No border around the graph
-
-// Add some grace to the top so that the scale doesn't
-// end exactly at the max value.
-$graph->yaxis->scale->SetGrace(100);
-
-// Setup X-axis labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-$graph->xaxis->SetFont(FF_FONT2);
-
-// Setup graph title ands fonts
-$graph->title->Set("Example of integer Y-scale");
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->xaxis->title->Set("Year 2002");
-$graph->xaxis->title->SetFont(FF_FONT2,FS_BOLD);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-$bplot->SetWidth(0.5);
-$bplot->SetShadow();
-
-// Setup the values that are displayed on top of each bar
-$bplot->value->Show();
-// Must use TTF fonts if we want text at an arbitrary angle
-$bplot->value->SetFont(FF_ARIAL,FS_BOLD);
-$bplot->value->SetAngle(45);
-// Black color for positive values and darkred for negative values
-$bplot->value->SetColor("black","darkred");
-$graph->Add($bplot);
-
-// Finally stroke the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/barintex2.php b/#jpgraph/src/Examples/barintex2.php
deleted file mode 100644
index 59f3b73b..00000000
--- a/#jpgraph/src/Examples/barintex2.php
+++ /dev/null
@@ -1,57 +0,0 @@
-img->SetMargin(40,30,40,40);
-$graph->SetScale("textint");
-$graph->SetFrame(true,'blue',1);
-$graph->SetColor('lightblue');
-$graph->SetMarginColor('lightblue');
-
-// Add some grace to the top so that the scale doesn't
-// end exactly at the max value.
-//$graph->yaxis->scale->SetGrace(20);
-
-// Setup X-axis labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->xaxis->SetColor('darkblue','black');
-
-// Stup "hidden" y-axis by given it the same color
-// as the background
-$graph->yaxis->SetColor('lightblue','darkblue');
-$graph->ygrid->SetColor('white');
-
-// Setup graph title ands fonts
-$graph->title->Set('Example of integer Y-scale');
-$graph->subtitle->Set('(With "hidden" y-axis)');
-
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->xaxis->title->Set("Year 2002");
-$graph->xaxis->title->SetFont(FF_FONT2,FS_BOLD);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor('darkblue');
-$bplot->SetColor('darkblue');
-$bplot->SetWidth(0.5);
-$bplot->SetShadow('darkgray');
-
-// Setup the values that are displayed on top of each bar
-$bplot->value->Show();
-// Must use TTF fonts if we want text at an arbitrary angle
-$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,8);
-$bplot->value->SetFormat('$%d');
-// Black color for positive values and darkred for negative values
-$bplot->value->SetColor("black","darkred");
-$graph->Add($bplot);
-
-// Finally stroke the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/barline_csimex1.php b/#jpgraph/src/Examples/barline_csimex1.php
deleted file mode 100644
index 1ab37ec5..00000000
--- a/#jpgraph/src/Examples/barline_csimex1.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(40,20,30,40);
-$graph->title->Set("CSIM example with bar and line");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Setup axis titles
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->mark->SetType(MARK_FILLEDCIRCLE);
-$lineplot->mark->SetWidth(5);
-$lineplot->mark->SetColor('black');
-$lineplot->mark->SetFillColor('red');
-$lineplot->SetCSIMTargets($targ,$alt);
-
-// Create line plot
-$barplot=new barPlot($ydata2);
-$barplot->SetCSIMTargets($targ,$alt);
-
-// Add the plots to the graph
-$graph->Add($lineplot);
-$graph->Add($barplot);
-
-$graph->StrokeCSIM();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/barlinealphaex1.php b/#jpgraph/src/Examples/barlinealphaex1.php
deleted file mode 100644
index 95c8b98e..00000000
--- a/#jpgraph/src/Examples/barlinealphaex1.php
+++ /dev/null
@@ -1,74 +0,0 @@
-GetShortMonth();
-
-// Create the graph.
-$graph = new Graph(300,200);
-$graph->SetScale("textlin");
-$graph->SetMarginColor('white');
-
-// Adjust the margin slightly so that we use the
-// entire area (since we don't use a frame)
-$graph->SetMargin(30,1,20,5);
-
-// Box around plotarea
-$graph->SetBox();
-
-// No frame around the image
-$graph->SetFrame(false);
-
-// Setup the tab title
-$graph->tabtitle->Set('Year 2003');
-$graph->tabtitle->SetFont(FF_ARIAL,FS_BOLD,10);
-
-// Setup the X and Y grid
-$graph->ygrid->SetFill(true,'#DDDDDD@0.5','#BBBBBB@0.5');
-$graph->ygrid->SetLineStyle('dashed');
-$graph->ygrid->SetColor('gray');
-$graph->xgrid->Show();
-$graph->xgrid->SetLineStyle('dashed');
-$graph->xgrid->SetColor('gray');
-
-// Setup month as labels on the X-axis
-$graph->xaxis->SetTickLabels($months);
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->xaxis->SetLabelAngle(45);
-
-// Create a bar pot
-$bplot = new BarPlot($ydata);
-$bplot->SetWidth(0.6);
-$fcol='#440000';
-$tcol='#FF9090';
-
-$bplot->SetFillGradient($fcol,$tcol,GRAD_LEFT_REFLECTION);
-
-// Set line weigth to 0 so that there are no border
-// around each bar
-$bplot->SetWeight(0);
-
-$graph->Add($bplot);
-
-// Create filled line plot
-$lplot = new LinePlot($ydata2);
-$lplot->SetFillColor('skyblue@0.5');
-$lplot->SetColor('navy@0.7');
-$lplot->SetBarCenter();
-
-$lplot->mark->SetType(MARK_SQUARE);
-$lplot->mark->SetColor('blue@0.5');
-$lplot->mark->SetFillColor('lightblue');
-$lplot->mark->SetSize(6);
-
-$graph->Add($lplot);
-
-// .. and finally send it back to the browser
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/barlinefreq_csimex1.php b/#jpgraph/src/Examples/barlinefreq_csimex1.php
deleted file mode 100644
index 00c5977d..00000000
--- a/#jpgraph/src/Examples/barlinefreq_csimex1.php
+++ /dev/null
@@ -1,100 +0,0 @@
-CheckCSIMCache('auto');
-
-// Setup some basic graph parameters
-$graph->SetScale("textlin");
-$graph->SetY2Scale('lin',0,100);
-$graph->img->SetMargin(50,70,30,40);
-$graph->yaxis->SetTitleMargin(30);
-$graph->SetMarginColor('#EEEEEE');
-
-// Setup titles and fonts
-$graph->title->Set("Frequence plot");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Turn the tickmarks
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-$graph->y2axis->SetTickSide(SIDE_RIGHT);
-$graph->y2axis->SetColor('black','blue');
-$graph->y2axis->SetLabelFormat('%3d.0%%');
-
-// Create a bar pot
-$bplot = new BarPlot($data_freq);
-
-// Create targets and alt texts for the image maps. One for each bar
-// (In this example this is just "dummy" targets)
-$targ=array("#1","#2","#3","#4","#5","#6","#7");
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-$bplot->SetCSIMTargets($targ,$alts);
-
-
-// Create accumulative graph
-$lplot = new LinePlot($data_accfreq);
-
-// We want the line plot data point in the middle of the bars
-$lplot->SetBarCenter();
-
-// Use transperancy
-$lplot->SetFillColor('lightblue@0.6');
-$lplot->SetColor('blue@0.6');
-//$lplot->SetColor('blue');
-$graph->AddY2($lplot);
-
-
-// Setup the bars
-$bplot->SetFillColor("orange@0.2");
-$bplot->SetValuePos('center');
-$bplot->value->SetFormat("%d");
-$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,9);
-$bplot->value->Show();
-
-// Add it to the graph
-$graph->Add($bplot);
-
-// Send back the HTML page which will call this script again
-// to retrieve the image.
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/barlinefreqex1.php b/#jpgraph/src/Examples/barlinefreqex1.php
deleted file mode 100644
index c5966bba..00000000
--- a/#jpgraph/src/Examples/barlinefreqex1.php
+++ /dev/null
@@ -1,83 +0,0 @@
-SetScale("textlin");
-$graph->SetY2Scale('lin',0,100);
-$graph->img->SetMargin(50,70,30,40);
-$graph->yaxis->SetTitleMargin(30);
-$graph->SetMarginColor('#EEEEEE');
-
-// Setup titles and fonts
-$graph->title->Set("Frequence plot");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Turn the tickmarks
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-$graph->y2axis->SetTickSide(SIDE_RIGHT);
-$graph->y2axis->SetColor('black','blue');
-$graph->y2axis->SetLabelFormat('%3d.0%%');
-
-// Create a bar pot
-$bplot = new BarPlot($data_freq);
-
-// Create accumulative graph
-$lplot = new LinePlot($data_accfreq);
-
-// We want the line plot data point in the middle of the bars
-$lplot->SetBarCenter();
-
-// Use transperancy
-$lplot->SetFillColor('lightblue@0.6');
-$lplot->SetColor('blue@0.6');
-$graph->AddY2($lplot);
-
-// Setup the bars
-$bplot->SetFillColor("orange@0.2");
-$bplot->SetValuePos('center');
-$bplot->value->SetFormat("%d");
-$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,9);
-$bplot->value->Show();
-
-// Add it to the graph
-$graph->Add($bplot);
-
-// Send back the HTML page which will call this script again
-// to retrieve the image.
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/barpatternex1.php b/#jpgraph/src/Examples/barpatternex1.php
deleted file mode 100644
index f0be38e1..00000000
--- a/#jpgraph/src/Examples/barpatternex1.php
+++ /dev/null
@@ -1,33 +0,0 @@
-SetScale("textlin");
-
-$graph->SetMarginColor('navy:1.9');
-$graph->SetBox();
-
-$graph->title->Set('Bar Pattern');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,20);
-
-$graph->SetTitleBackground('lightblue:1.3',TITLEBKG_STYLE2,TITLEBKG_FRAME_BEVEL);
-$graph->SetTitleBackgroundFillStyle(TITLEBKG_FILLSTYLE_HSTRIPED,'lightblue','blue');
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor('darkorange');
-$bplot->SetWidth(0.6);
-
-$bplot->SetPattern(PATTERN_CROSS1,'navy');
-
-$graph->Add($bplot);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/barscalecallbackex1.php b/#jpgraph/src/Examples/barscalecallbackex1.php
deleted file mode 100644
index 7e73f201..00000000
--- a/#jpgraph/src/Examples/barscalecallbackex1.php
+++ /dev/null
@@ -1,63 +0,0 @@
-img->SetMargin(80,30,30,40);
-$graph->SetScale('textint');
-$graph->SetShadow();
-$graph->SetFrame(false); // No border around the graph
-
-// Add some grace to the top so that the scale doesn't
-// end exactly at the max value.
-// The grace value is the percetage of additional scale
-// value we add. Specifying 50 means that we add 50% of the
-// max value
-$graph->yaxis->scale->SetGrace(50);
-$graph->yaxis->SetLabelFormatCallback('separator1000');
-
-// Setup X-axis labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-$graph->xaxis->SetFont(FF_FONT2);
-
-// Setup graph title ands fonts
-$graph->title->Set('Example of Y-scale callback formatting');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->xaxis->title->Set('Year 2002');
-$graph->xaxis->title->SetFont(FF_FONT2,FS_BOLD);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor('orange');
-$bplot->SetWidth(0.5);
-$bplot->SetShadow();
-
-// Setup the values that are displayed on top of each bar
-$bplot->value->Show();
-
-// Must use TTF fonts if we want text at an arbitrary angle
-$bplot->value->SetFont(FF_ARIAL,FS_BOLD);
-$bplot->value->SetAngle(45);
-$bplot->value->SetFormatCallback('separator1000_usd');
-
-// Black color for positive values and darkred for negative values
-$bplot->value->SetColor('black','darkred');
-$graph->Add($bplot);
-
-// Finally stroke the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/bartutex1.php b/#jpgraph/src/Examples/bartutex1.php
deleted file mode 100644
index 0c0f9c51..00000000
--- a/#jpgraph/src/Examples/bartutex1.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale("textlin");
-
-// Set title and subtitle
-$graph->title->Set("Elementary barplot with a text scale");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend("Temperature");
-//$b1->SetAbsWidth(6);
-//$b1->SetShadow();
-
-// The order the plots are added determines who's ontop
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/bartutex12.php b/#jpgraph/src/Examples/bartutex12.php
deleted file mode 100644
index 6f97c5c6..00000000
--- a/#jpgraph/src/Examples/bartutex12.php
+++ /dev/null
@@ -1,90 +0,0 @@
-SetBackgroundImage("tiger_bkg.png",BGIMG_FILLFRAME);
-$graph->SetShadow();
-
-// Use text X-scale so we can text labels on the X-axis
-$graph->SetScale("textlin");
-
-// Y2-axis is linear
-$graph->SetY2Scale("lin");
-
-// Color the two Y-axis to make them easier to associate
-// to the corresponding plot (we keep the axis black though)
-$graph->yaxis->SetColor("black","red");
-$graph->y2axis->SetColor("black","orange");
-
-// Set title and subtitle
-$graph->title->Set("Combined bar and line plot");
-$graph->subtitle->Set("100 data points, X-Scale: 'text'");
-
-// Use built in font (don't need TTF support)
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Make the margin around the plot a little bit bigger then default
-$graph->img->SetMargin(40,140,40,80);
-
-// Slightly adjust the legend from it's default position in the
-// top right corner to middle right side
-$graph->legend->Pos(0.03,0.5,"right","center");
-
-// Display every 6:th tickmark
-$graph->xaxis->SetTextTickInterval(6);
-
-// Label every 2:nd tick mark
-$graph->xaxis->SetTextLabelInterval(2);
-
-// Setup the labels
-$graph->xaxis->SetTickLabels($databarx);
-$graph->xaxis->SetLabelAngle(90);
-
-// Create a red line plot
-$p1 = new LinePlot($datay);
-$p1->SetColor("red");
-$p1->SetLegend("Pressure");
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend("Temperature");
-$b1->SetFillColor("orange");
-$b1->SetAbsWidth(8);
-
-// Drop shadow on bars adjust the default values a little bit
-$b1->SetShadow("steelblue",2,2);
-
-// The order the plots are added determines who's ontop
-$graph->Add($p1);
-$graph->AddY2($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/bartutex2.php b/#jpgraph/src/Examples/bartutex2.php
deleted file mode 100644
index a911c337..00000000
--- a/#jpgraph/src/Examples/bartutex2.php
+++ /dev/null
@@ -1,40 +0,0 @@
-GetShortMonth();
-
-// New graph with a drop shadow
-$graph = new Graph(300,200,'auto');
-$graph->SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale("textlin");
-
-// Specify X-labels
-$graph->xaxis->SetTickLabels($months);
-
-// Set title and subtitle
-$graph->title->Set("Textscale with specified labels");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend("Temperature");
-
-//$b1->SetAbsWidth(6);
-//$b1->SetShadow();
-
-// The order the plots are added determines who's ontop
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/bartutex3.php b/#jpgraph/src/Examples/bartutex3.php
deleted file mode 100644
index addb91c4..00000000
--- a/#jpgraph/src/Examples/bartutex3.php
+++ /dev/null
@@ -1,44 +0,0 @@
-GetShortMonth();
-
-srand ((double) microtime() * 1000000);
-for( $i=0; $i<25; ++$i) {
- $databary[]=rand(1,50);
- $databarx[]=$months[$i%12];
-}
-
-// New graph with a drop shadow
-$graph = new Graph(300,200,'auto');
-$graph->SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale("textlin");
-
-// Specify X-labels
-$graph->xaxis->SetTickLabels($databarx);
-
-// Set title and subtitle
-$graph->title->Set("Bar tutorial example 3");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend("Temperature");
-//$b1->SetAbsWidth(6);
-//$b1->SetShadow();
-
-// The order the plots are added determines who's ontop
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/bartutex4.php b/#jpgraph/src/Examples/bartutex4.php
deleted file mode 100644
index dffe16ab..00000000
--- a/#jpgraph/src/Examples/bartutex4.php
+++ /dev/null
@@ -1,47 +0,0 @@
-GetShortMonth();
-
-srand ((double) microtime() * 1000000);
-for( $i=0; $i<25; ++$i) {
- $databary[]=rand(1,50);
- $databarx[]=$months[$i%12];
-}
-
-// New graph with a drop shadow
-$graph = new Graph(300,200,'auto');
-$graph->SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale("textlin");
-
-// Specify X-labels
-//$databarx = array('tXi','','','xxx','','','iXii','','','OOO','','','tOO');
-$graph->xaxis->SetFont(FF_FONT1,FS_NORMAL);
-$graph->xaxis->SetTickLabels($databarx);
-$graph->xaxis->SetTextLabelInterval(3);
-
-// Set title and subtitle
-$graph->title->Set("Displaying only every third label");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend("Temperature");
-//$b1->SetAbsWidth(6);
-//$b1->SetShadow();
-
-// The order the plots are added determines who's ontop
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/bartutex5.php b/#jpgraph/src/Examples/bartutex5.php
deleted file mode 100644
index e41a47b5..00000000
--- a/#jpgraph/src/Examples/bartutex5.php
+++ /dev/null
@@ -1,45 +0,0 @@
-GetShortMonth();
-
-srand ((double) microtime() * 1000000);
-for( $i=0; $i<25; ++$i) {
- $databary[]=rand(1,50);
- $databarx[]=$months[$i%12];
-}
-
-// New graph with a drop shadow
-$graph = new Graph(300,200,'auto');
-$graph->SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale("textlin");
-
-// Specify X-labels
-$graph->xaxis->SetTickLabels($databarx);
-$graph->xaxis->SetTextLabelInterval(1);
-$graph->xaxis->SetTextTickInterval(3);
-
-// Set title and subtitle
-$graph->title->Set("Bar tutorial example 5");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend("Temperature");
-$b1->SetWidth(0.4);
-
-// The order the plots are added determines who's ontop
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/bartutex6.php b/#jpgraph/src/Examples/bartutex6.php
deleted file mode 100644
index 13b0557f..00000000
--- a/#jpgraph/src/Examples/bartutex6.php
+++ /dev/null
@@ -1,47 +0,0 @@
-GetShortMonth();
-srand ((double) microtime() * 1000000);
-for( $i=0; $i<25; ++$i) {
- $databary[]=rand(1,50);
- $databarx[]=$months[$i%12];
-}
-
-// New graph with a drop shadow
-$graph = new Graph(300,200,'auto');
-$graph->SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale("textlin");
-
-// Specify X-labels
-$graph->xaxis->SetTickLabels($databarx);
-$graph->xaxis->SetTextLabelInterval(3);
-
-// Hide the tick marks
-$graph->xaxis->HideTicks();
-
-// Set title and subtitle
-$graph->title->Set("Bar tutorial example 6");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend("Temperature");
-$b1->SetWidth(0.4);
-
-
-// The order the plots are added determines who's ontop
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/basic_contourex01.php b/#jpgraph/src/Examples/basic_contourex01.php
deleted file mode 100644
index 75d765a9..00000000
--- a/#jpgraph/src/Examples/basic_contourex01.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale('intint');
-
-// Adjust the margins to fit the margin
-$graph->SetMargin(30,100,40,30);
-
-// Setup
-$graph->title->Set('Basic contour plot');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// A simple contour plot with default arguments (e.g. 10 isobar lines)
-$cp = new ContourPlot($data);
-
-// Display the legend
-$cp->ShowLegend();
-
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/basic_contourex02.php b/#jpgraph/src/Examples/basic_contourex02.php
deleted file mode 100644
index f63a650d..00000000
--- a/#jpgraph/src/Examples/basic_contourex02.php
+++ /dev/null
@@ -1,43 +0,0 @@
-SetScale('intint');
-
-// Show axis on all sides
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-
-// Adjust the margins to fit the margin
-$graph->SetMargin(30,100,40,30);
-
-// Setup
-$graph->title->Set('Basic contour plot with multiple axis');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// A simple contour plot with default arguments (e.g. 10 isobar lines)
-$cp = new ContourPlot($data);
-
-// Display the legend
-$cp->ShowLegend();
-
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/basic_contourex03-1.php b/#jpgraph/src/Examples/basic_contourex03-1.php
deleted file mode 100644
index 26a01de6..00000000
--- a/#jpgraph/src/Examples/basic_contourex03-1.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale('intint');
-
-// Show axis on all sides
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-
-// Adjust the margins to fit the margin
-$graph->SetMargin(30,100,40,30);
-
-// Setup
-$graph->title->Set('Basic contour plot with multiple axis');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// A simple contour plot with default arguments (e.g. 10 isobar lines)
-$cp = new ContourPlot($data,10,1);
-
-// Display the legend
-$cp->ShowLegend();
-
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/basic_contourex03-2.php b/#jpgraph/src/Examples/basic_contourex03-2.php
deleted file mode 100644
index 02b9376c..00000000
--- a/#jpgraph/src/Examples/basic_contourex03-2.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale('intint');
-
-// Show axis on all sides
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-
-// Adjust the margins to fit the margin
-$graph->SetMargin(30,100,40,30);
-
-// Setup
-$graph->title->Set('Basic contour plot with multiple axis');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// A simple contour plot with default arguments (e.g. 10 isobar lines)
-$cp = new ContourPlot($data,10,2);
-
-// Display the legend
-$cp->ShowLegend();
-
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/basic_contourex03-3.php b/#jpgraph/src/Examples/basic_contourex03-3.php
deleted file mode 100644
index 1de30b70..00000000
--- a/#jpgraph/src/Examples/basic_contourex03-3.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale('intint');
-
-// Show axis on all sides
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-
-// Adjust the margins to fit the margin
-$graph->SetMargin(30,100,40,30);
-
-// Setup
-$graph->title->Set('Basic contour plot with multiple axis');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// A simple contour plot with default arguments (e.g. 10 isobar lines)
-$cp = new ContourPlot($data,10,3);
-
-// Display the legend
-$cp->ShowLegend();
-
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/basic_contourex04.php b/#jpgraph/src/Examples/basic_contourex04.php
deleted file mode 100644
index c32e8384..00000000
--- a/#jpgraph/src/Examples/basic_contourex04.php
+++ /dev/null
@@ -1,43 +0,0 @@
-SetScale('intint');
-
-// Show axis on all sides
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-
-// Adjust the margins to fit the margin
-$graph->SetMargin(30,100,40,30);
-
-// Setup
-$graph->title->Set('Basic contour plot with multiple axis');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// A simple contour plot with default arguments (e.g. 10 isobar lines)
-$cp = new ContourPlot($data,5);
-
-// Display the legend
-$cp->ShowLegend();
-
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/basic_contourex05.php b/#jpgraph/src/Examples/basic_contourex05.php
deleted file mode 100644
index 61936fce..00000000
--- a/#jpgraph/src/Examples/basic_contourex05.php
+++ /dev/null
@@ -1,46 +0,0 @@
-SetScale('intint');
-
-// Show axis on all sides
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-
-// Adjust the margins to fit the margin
-$graph->SetMargin(30,100,40,30);
-
-// Setup
-$graph->title->Set('Basic contour plot with multiple axis');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// A simple contour plot with default arguments (e.g. 10 isobar lines)
-$cp = new ContourPlot($data);
-
-// Flip the data around its center line
-$cp->SetInvert();
-
-// Display the legend
-$cp->ShowLegend();
-
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/bezierex1.php b/#jpgraph/src/Examples/bezierex1.php
deleted file mode 100644
index 50fad510..00000000
--- a/#jpgraph/src/Examples/bezierex1.php
+++ /dev/null
@@ -1,54 +0,0 @@
-Get(50);
-
-// Create the graph
-$g = new Graph(300,200);
-$g->SetMargin(30,20,40,30);
-$g->title->Set("Bezier interpolation");
-$g->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-$g->subtitle->Set('(Control points shown in red)');
-$g->subtitle->SetColor('darkred');
-$g->SetMarginColor('lightblue');
-
-//$g->img->SetAntiAliasing();
-
-// We need a linlin scale since we provide both
-// x and y coordinates for the data points.
-$g->SetScale('linlin');
-
-// We want 1 decimal for the X-label
-$g->xaxis->SetLabelFormat('%1.1f');
-
-// We use a scatterplot to illustrate the original
-// contro points.
-$bplot = new ScatterPlot($ydata,$xdata);
-$bplot->mark->SetFillColor('red@0.3');
-$bplot->mark->SetColor('red@0.5');
-
-// And a line plot to stroke the smooth curve we got
-// from the original control points
-$lplot = new LinePlot($newy,$newx);
-$lplot->SetColor('navy');
-
-// Add the plots to the graph and stroke
-$g->Add($lplot);
-$g->Add($bplot);
-$g->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/bkgimgflagex1.php b/#jpgraph/src/Examples/bkgimgflagex1.php
deleted file mode 100644
index 1e479383..00000000
--- a/#jpgraph/src/Examples/bkgimgflagex1.php
+++ /dev/null
@@ -1,79 +0,0 @@
-SetScale('textlin');
-$graph->SetMargin(40,20,20,40);
-$graph->SetMarginColor('white:0.9');
-$graph->SetColor('white');
-$graph->SetShadow();
-
-// Adjust the position of the legend box
-$graph->legend->Pos(0.03,0.10);
-
-// Adjust the color for theshadow of the legend
-$graph->legend->SetShadow('darkgray@0.5');
-$graph->legend->SetFillColor('lightblue@0.1');
-$graph->legend->Hide();
-
-// Get localised version of the month names
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-$graph->SetBackgroundCountryFlag('mais',BGIMG_COPY,50);
-
-// Set axis titles and fonts
-$graph->xaxis->title->Set('Year 2002');
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetColor('white');
-
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->SetColor('navy');
-
-$graph->yaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->SetColor('navy');
-
-//$graph->ygrid->Show(false);
-$graph->ygrid->SetColor('white@0.5');
-
-// Setup graph title
-$graph->title->Set('Using a country flag background');
-
-// Some extra margin (from the top)
-$graph->title->SetMargin(3);
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-// Create the three var series we will combine
-$bplot1 = new BarPlot($datay1);
-$bplot2 = new BarPlot($datay2);
-$bplot3 = new BarPlot($datay3);
-
-// Setup the colors with 40% transparency (alpha channel)
-$bplot1->SetFillColor('yellow@0.4');
-$bplot2->SetFillColor('red@0.4');
-$bplot3->SetFillColor('darkgreen@0.4');
-
-// Setup legends
-$bplot1->SetLegend('Label 1');
-$bplot2->SetLegend('Label 2');
-$bplot3->SetLegend('Label 3');
-
-// Setup each bar with a shadow of 50% transparency
-$bplot1->SetShadow('black@0.4');
-$bplot2->SetShadow('black@0.4');
-$bplot3->SetShadow('black@0.4');
-
-$gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3));
-$gbarplot->SetWidth(0.6);
-$graph->Add($gbarplot);
-
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/bkgimgflagex2.php b/#jpgraph/src/Examples/bkgimgflagex2.php
deleted file mode 100644
index c6a27b3d..00000000
--- a/#jpgraph/src/Examples/bkgimgflagex2.php
+++ /dev/null
@@ -1,83 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,20,20,40);
-$graph->SetMarginColor('white:0.9');
-$graph->SetColor('white');
-$graph->SetShadow();
-
-// Apply a perspective transformation at the end
-$graph->Set3DPerspective(SKEW3D_UP,100,180);
-
-// Adjust the position of the legend box
-$graph->legend->Pos(0.03,0.10);
-
-// Adjust the color for theshadow of the legend
-$graph->legend->SetShadow('darkgray@0.5');
-$graph->legend->SetFillColor('lightblue@0.1');
-$graph->legend->Hide();
-
-// Get localised version of the month names
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-$graph->SetBackgroundCountryFlag('mais',BGIMG_COPY,50);
-
-// Set axis titles and fonts
-$graph->xaxis->title->Set('Year 2002');
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetColor('white');
-
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->SetColor('navy');
-
-$graph->yaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->SetColor('navy');
-
-//$graph->ygrid->Show(false);
-$graph->ygrid->SetColor('white@0.5');
-
-// Setup graph title
-$graph->title->Set('Using a country flag background');
-
-// Some extra margin (from the top)
-$graph->title->SetMargin(3);
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-// Create the three var series we will combine
-$bplot1 = new BarPlot($datay1);
-$bplot2 = new BarPlot($datay2);
-$bplot3 = new BarPlot($datay3);
-
-// Setup the colors with 40% transparency (alpha channel)
-$bplot1->SetFillColor('yellow@0.4');
-$bplot2->SetFillColor('red@0.4');
-$bplot3->SetFillColor('darkgreen@0.4');
-
-// Setup legends
-$bplot1->SetLegend('Label 1');
-$bplot2->SetLegend('Label 2');
-$bplot3->SetLegend('Label 3');
-
-// Setup each bar with a shadow of 50% transparency
-$bplot1->SetShadow('black@0.4');
-$bplot2->SetShadow('black@0.4');
-$bplot3->SetShadow('black@0.4');
-
-$gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3));
-$gbarplot->SetWidth(0.6);
-$graph->Add($gbarplot);
-
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/bkgimgflagex3.php b/#jpgraph/src/Examples/bkgimgflagex3.php
deleted file mode 100644
index be9afb73..00000000
--- a/#jpgraph/src/Examples/bkgimgflagex3.php
+++ /dev/null
@@ -1,83 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,20,20,40);
-$graph->SetMarginColor('white:0.9');
-$graph->SetColor('white');
-$graph->SetShadow();
-
-// Apply a perspective transformation at the end
-$graph->Set3DPerspective(SKEW3D_DOWN,100,180);
-
-// Adjust the position of the legend box
-$graph->legend->Pos(0.03,0.10);
-
-// Adjust the color for theshadow of the legend
-$graph->legend->SetShadow('darkgray@0.5');
-$graph->legend->SetFillColor('lightblue@0.1');
-$graph->legend->Hide();
-
-// Get localised version of the month names
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-$graph->SetBackgroundCountryFlag('mais',BGIMG_COPY,50);
-
-// Set axis titles and fonts
-$graph->xaxis->title->Set('Year 2002');
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetColor('white');
-
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->SetColor('navy');
-
-$graph->yaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->SetColor('navy');
-
-//$graph->ygrid->Show(false);
-$graph->ygrid->SetColor('white@0.5');
-
-// Setup graph title
-$graph->title->Set('Using a country flag background');
-
-// Some extra margin (from the top)
-$graph->title->SetMargin(3);
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-// Create the three var series we will combine
-$bplot1 = new BarPlot($datay1);
-$bplot2 = new BarPlot($datay2);
-$bplot3 = new BarPlot($datay3);
-
-// Setup the colors with 40% transparency (alpha channel)
-$bplot1->SetFillColor('yellow@0.4');
-$bplot2->SetFillColor('red@0.4');
-$bplot3->SetFillColor('darkgreen@0.4');
-
-// Setup legends
-$bplot1->SetLegend('Label 1');
-$bplot2->SetLegend('Label 2');
-$bplot3->SetLegend('Label 3');
-
-// Setup each bar with a shadow of 50% transparency
-$bplot1->SetShadow('black@0.4');
-$bplot2->SetShadow('black@0.4');
-$bplot3->SetShadow('black@0.4');
-
-$gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3));
-$gbarplot->SetWidth(0.6);
-$graph->Add($gbarplot);
-
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/bkgimgflagex4.php b/#jpgraph/src/Examples/bkgimgflagex4.php
deleted file mode 100644
index d7db486a..00000000
--- a/#jpgraph/src/Examples/bkgimgflagex4.php
+++ /dev/null
@@ -1,83 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,20,20,40);
-$graph->SetMarginColor('white:0.9');
-$graph->SetColor('white');
-$graph->SetShadow();
-
-// Apply a perspective transformation at the end
-$graph->Set3DPerspective(SKEW3D_LEFT,350,320,true);
-
-// Adjust the position of the legend box
-$graph->legend->Pos(0.03,0.10);
-
-// Adjust the color for theshadow of the legend
-$graph->legend->SetShadow('darkgray@0.5');
-$graph->legend->SetFillColor('lightblue@0.1');
-$graph->legend->Hide();
-
-// Get localised version of the month names
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-$graph->SetBackgroundCountryFlag('mais',BGIMG_COPY,50);
-
-// Set axis titles and fonts
-$graph->xaxis->title->Set('Year 2002');
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetColor('white');
-
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->SetColor('navy');
-
-$graph->yaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->SetColor('navy');
-
-//$graph->ygrid->Show(false);
-$graph->ygrid->SetColor('white@0.5');
-
-// Setup graph title
-$graph->title->Set('Using a country flag background');
-
-// Some extra margin (from the top)
-$graph->title->SetMargin(3);
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-// Create the three var series we will combine
-$bplot1 = new BarPlot($datay1);
-$bplot2 = new BarPlot($datay2);
-$bplot3 = new BarPlot($datay3);
-
-// Setup the colors with 40% transparency (alpha channel)
-$bplot1->SetFillColor('yellow@0.4');
-$bplot2->SetFillColor('red@0.4');
-$bplot3->SetFillColor('darkgreen@0.4');
-
-// Setup legends
-$bplot1->SetLegend('Label 1');
-$bplot2->SetLegend('Label 2');
-$bplot3->SetLegend('Label 3');
-
-// Setup each bar with a shadow of 50% transparency
-$bplot1->SetShadow('black@0.4');
-$bplot2->SetShadow('black@0.4');
-$bplot3->SetShadow('black@0.4');
-
-$gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3));
-$gbarplot->SetWidth(0.6);
-$graph->Add($gbarplot);
-
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/bkgimgflagex5.php b/#jpgraph/src/Examples/bkgimgflagex5.php
deleted file mode 100644
index f45a85a0..00000000
--- a/#jpgraph/src/Examples/bkgimgflagex5.php
+++ /dev/null
@@ -1,83 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,20,20,40);
-$graph->SetMarginColor('white:0.9');
-$graph->SetColor('white');
-$graph->SetShadow();
-
-// Apply a perspective transformation at the end
-$graph->Set3DPerspective(SKEW3D_RIGHT,350,320,true);
-
-// Adjust the position of the legend box
-$graph->legend->Pos(0.03,0.10);
-
-// Adjust the color for theshadow of the legend
-$graph->legend->SetShadow('darkgray@0.5');
-$graph->legend->SetFillColor('lightblue@0.1');
-$graph->legend->Hide();
-
-// Get localised version of the month names
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-$graph->SetBackgroundCountryFlag('mais',BGIMG_COPY,50);
-
-// Set axis titles and fonts
-$graph->xaxis->title->Set('Year 2002');
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetColor('white');
-
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->SetColor('navy');
-
-$graph->yaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->SetColor('navy');
-
-//$graph->ygrid->Show(false);
-$graph->ygrid->SetColor('white@0.5');
-
-// Setup graph title
-$graph->title->Set('Using a country flag background');
-
-// Some extra margin (from the top)
-$graph->title->SetMargin(3);
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-// Create the three var series we will combine
-$bplot1 = new BarPlot($datay1);
-$bplot2 = new BarPlot($datay2);
-$bplot3 = new BarPlot($datay3);
-
-// Setup the colors with 40% transparency (alpha channel)
-$bplot1->SetFillColor('yellow@0.4');
-$bplot2->SetFillColor('red@0.4');
-$bplot3->SetFillColor('darkgreen@0.4');
-
-// Setup legends
-$bplot1->SetLegend('Label 1');
-$bplot2->SetLegend('Label 2');
-$bplot3->SetLegend('Label 3');
-
-// Setup each bar with a shadow of 50% transparency
-$bplot1->SetShadow('black@0.4');
-$bplot2->SetShadow('black@0.4');
-$bplot3->SetShadow('black@0.4');
-
-$gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3));
-$gbarplot->SetWidth(0.6);
-$graph->Add($gbarplot);
-
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/blueblack400x300grad.png b/#jpgraph/src/Examples/blueblack400x300grad.png
deleted file mode 100644
index 8852862a..00000000
Binary files a/#jpgraph/src/Examples/blueblack400x300grad.png and /dev/null differ
diff --git a/#jpgraph/src/Examples/boxstockcsimex1.php b/#jpgraph/src/Examples/boxstockcsimex1.php
deleted file mode 100644
index 1cb765d3..00000000
--- a/#jpgraph/src/Examples/boxstockcsimex1.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale("textlin");
-$graph->SetMarginColor('lightblue');
-$graph->title->Set('Box Stock chart example');
-
-// Create a new stock plot
-$p1 = new BoxPlot($datay);
-
-// Setup URL target for image map
-$p1->SetCSIMTargets(array('#1','#2','#3','#4','#5'));
-
-// Width of the bars (in pixels)
-$p1->SetWidth(9);
-
-//$p1->SetCenter();
-// Uncomment the following line to hide the horizontal end lines
-//$p1->HideEndLines();
-
-// Add the plot to the graph and send it back to the browser
-$graph->Add($p1);
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/boxstockex1.php b/#jpgraph/src/Examples/boxstockex1.php
deleted file mode 100644
index 4e09833e..00000000
--- a/#jpgraph/src/Examples/boxstockex1.php
+++ /dev/null
@@ -1,33 +0,0 @@
-SetScale('textlin');
-$graph->SetMarginColor('lightblue');
-$graph->title->Set('Box Stock chart example');
-
-// Create a new stock plot
-$p1 = new BoxPlot($datay);
-
-// Width of the bars (in pixels)
-$p1->SetWidth(9);
-
-// Uncomment the following line to hide the horizontal end lines
-//$p1->HideEndLines();
-
-// Add the plot to the graph and send it back to the browser
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/boxstockex2.php b/#jpgraph/src/Examples/boxstockex2.php
deleted file mode 100644
index d3531f48..00000000
--- a/#jpgraph/src/Examples/boxstockex2.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale("textlin");
-$graph->SetMarginColor('lightblue');
-$graph->title->Set('Box Stock chart example');
-$graph->subtitle->Set('(Indented X-axis)');
-
-// Create a new stock plot
-$p1 = new BoxPlot($datay);
-
-// Width of the bars (in pixels)
-$p1->SetWidth(9);
-
-// Indent bars so they dont start and end at the edge of the
-// plot area
-$p1->SetCenter();
-
-// Uncomment the following line to hide the horizontal end lines
-//$p1->HideEndLines();
-
-// Add the plot to the graph and send it back to the browser
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/builtinplotmarksex1.php b/#jpgraph/src/Examples/builtinplotmarksex1.php
deleted file mode 100644
index 5d265fac..00000000
--- a/#jpgraph/src/Examples/builtinplotmarksex1.php
+++ /dev/null
@@ -1,66 +0,0 @@
-SetMargin(30,20,60,20);
-$graph->SetMarginColor('white');
-$graph->SetScale("linlin");
-
-// Hide the frame around the graph
-$graph->SetFrame(false);
-
-// Setup title
-$graph->title->Set("Using Builtin PlotMarks");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,14);
-
-// Note: requires jpgraph 1.12p or higher
-// $graph->SetBackgroundGradient('blue','navy:0.5',GRAD_HOR,BGRAD_PLOT);
-$graph->tabtitle->Set('Region 1' );
-$graph->tabtitle->SetWidth(TABTITLE_WIDTHFULL);
-
-// Enable X and Y Grid
-$graph->xgrid->Show();
-$graph->xgrid->SetColor('gray@0.5');
-$graph->ygrid->SetColor('gray@0.5');
-
-// Format the legend box
-$graph->legend->SetColor('navy');
-$graph->legend->SetFillColor('lightgreen');
-$graph->legend->SetLineWeight(1);
-$graph->legend->SetFont(FF_ARIAL,FS_BOLD,8);
-$graph->legend->SetShadow('gray@0.4',3);
-$graph->legend->SetAbsPos(15,120,'right','bottom');
-
-// Create the line plots
-
-$p1 = new LinePlot($datay1);
-$p1->SetColor("red");
-$p1->SetFillColor("yellow@0.5");
-$p1->SetWeight(2);
-$p1->mark->SetType(MARK_IMG_DIAMOND,5,0.6);
-$p1->SetLegend('2006');
-$graph->Add($p1);
-
-$p2 = new LinePlot($datay2);
-$p2->SetColor("darkgreen");
-$p2->SetWeight(2);
-$p2->SetLegend('2001');
-$p2->mark->SetType(MARK_IMG_MBALL,'red');
-$graph->Add($p2);
-
-// Add a vertical line at the end scale position '7'
-$l1 = new PlotLine(VERTICAL,7);
-$graph->Add($l1);
-
-// Output the graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/canvas_jpgarchex.php b/#jpgraph/src/Examples/canvas_jpgarchex.php
deleted file mode 100644
index a67c0cbe..00000000
--- a/#jpgraph/src/Examples/canvas_jpgarchex.php
+++ /dev/null
@@ -1,143 +0,0 @@
-SetMargin(2,3,2,3);
-$g->SetMarginColor("teal");
-$g->InitFrame();
-
-// ... and a scale
-$scale = new CanvasScale($g);
-$scale->Set(0,$xmax,0,$ymax);
-
-// ... we need shape since we want the indented rectangle
-$shape = new Shape($g,$scale);
-$shape->SetColor('black');
-
-// ... basic parameters for the overall image
-$l = 2; // Left margin
-$r = 18; // Row number to start the lowest line on
-$width = 16; // Total width
-
-// Setup the two basic rectangle text object we will use
-$tt = new CanvasRectangleText();
-$tt->SetFont(FF_ARIAL,FS_NORMAL,14);
-$tt->SetFillColor('');
-$tt->SetColor('');
-$tt->SetFontColor('navy');
-
-$t = new CanvasRectangleText();
-$t->SetFont(FF_ARIAL,FS_NORMAL,14);
-$t->SetFillColor('goldenrod1');
-$t->SetFontColor('navy');
-
-
-// Now start drawing the arch overview from the bottom and up
-// This is all pretty manual and one day I will write a proper
-// framework to make it easy to construct these types of architecture
-// overviews. But for now, just plain old coordinates..
-
-// Line: GD Library and image libraries
-$h=3;
-$s = 3; $d=$l + $width-9;
-$t->SetFillColor('cadetblue3');
-$t->Set("TTF",$d,$r+2,$s,1);
-$t->Stroke($g->img,$scale);
-$t->Set("PNG",$d+$s,$r+2,$s,1);
-$t->Stroke($g->img,$scale);
-$t->Set("JPEG",$d+2*$s,$r+2,$s,1);
-$t->Stroke($g->img,$scale);
-$shape->IndentedRectangle($l,$r,$width,$h,$s*3,1,2,'lightgreen');
-$tt->Set("GD Basic library\n(1.8.x or 2.x)",$l,$r,$width,$h-1);
-$tt->Stroke($g->img,$scale);
-
-
-// Area: Basic internal JpGraph architecture
-$t->SetFillColor('goldenrod1');
-$h = 2;
-$r -= $h; $d=8;
-$t->Set("Image primitives\n(RGB, Anti-aliasing,\nGD Abstraction)",$l,$r-0.5,$width*0.5,$h+0.5);
-$t->Stroke($g->img,$scale);
-$t->Set("Image Cache &\nStreaming",$l+0.5*$width,$r,$width*0.4,$h);
-$t->Stroke($g->img,$scale);
-
-$r -= $h; $d=8;
-$t->Set("2D Rot & Transformation",$l,$r,$width*0.5,$h-0.5); $t->Stroke($g->img,$scale);
-
-
-$r -= 2; $h = 4;
-$shape->IndentedRectangle($l,$r,$width*0.9,$h,$d,2,3,'goldenrod1');
-$tt->Set("Axis, Labelling, (Auto)-Scaling",$l,$r,$width*0.9,$h-2); $tt->Stroke($g->img,$scale);
-
-$r -= 1;
-$shape->IndentedRectangle($l,$r,$width,7,$width*0.9,6,3,'goldenrod1');
-$tt->Set("Error handling & Utility classes",$l,$r,$width,1); $tt->Stroke($g->img,$scale);
-
-
-// Area: Top area with graph components
-$t->SetFillColor('gold1');
-$r -= 3;
-$w = $width*0.55/4; $h = 2;
-$t->Set("Gantt\nGraph",$l,$r,$w,$h);
-$t->Stroke($g->img,$scale);
-
-$t->Set("Pie\nGraph",$l+$w,$r,$w,$h);
-$t->Stroke($g->img,$scale);
-$t->Set("Radar\nGraph",$l+$w*2,$r,$w,$h);
-$t->Stroke($g->img,$scale);
-
-$shape->IndentedRectangle($l,$r,$width,3,4*$w,2,0,'gold1');
-$tt->Set("Base Graph\n(Orthogonal\ncoordinate system)",$l+4*$w,$r,$width-$w*4,3);
-$tt->Stroke($g->img,$scale);
-
-$r -= 2;
-$d = 0.7;
-$shape->IndentedRectangle($l+3*$w,$r,$w,4, $w*$d,2,0,'gold1');
-$t->Set("Canv\nUtil",$l+3*$w,$r,$w*$d,$h); $t->Stroke($g->img,$scale);
-$tt->Set("Canvas\nGraph",$l+3*$w,$r+2,$w,2); $tt->Stroke($g->img,$scale);
-
-// Top line of plotting plugins
-$t->SetFillColor('cyan');
-$t->Set("Gantt\nPlot",$l,$r,$w,$h); $t->Stroke($g->img,$scale);
-$t->Set("2D\nPlot",$l+$w,$r,$w/2,$h); $t->Stroke($g->img,$scale);
-$t->Set("3D\nPlot",$l+$w+$w/2,$r,$w/2,$h);$t->Stroke($g->img,$scale);
-$t->Set("Radar\nPlot",$l+2*$w,$r,$w,$h); $t->Stroke($g->img,$scale);
-
-$wp = ($width - 4*$w)/4;
-$t->Set("Error\nPlot",$l+4*$w,$r,$wp,$h); $t->Stroke($g->img,$scale);
-$t->Set("Line\nPlot",$l+4*$w+$wp,$r,$wp,$h); $t->Stroke($g->img,$scale);
-$t->Set("Bar\nPlot",$l+4*$w+2*$wp,$r,$wp,$h); $t->Stroke($g->img,$scale);
-$t->Set("Scatter\nPlot",$l+4*$w+3*$wp,$r,$wp,$h); $t->Stroke($g->img,$scale);
-
-// Show application top
-$r -= 2.5; $h=2;
-$t->SetFillColor('blue');
-$t->SetFontColor('white');
-$t->SetFont(FF_ARIAL,FS_BOLD,20);
-$t->Set("PHP Application",$l,$r,$width,$h); $t->Stroke($g->img,$scale);
-
-// Stroke title
-$r = 0.5;
-$tt->SetFontColor('black');
-$tt->SetFont(FF_TIMES,FS_BOLD,28);
-$tt->Set("JpGraph Architecture Overview",$l,$r,$width,1);
-$tt->Stroke($g->img,$scale);
-
-// Stroke footer
-$tt->SetFont(FF_VERDANA,FS_NORMAL,10);
-$tt->Set("Generated: ".date("ymd H:m",time()),0.1,$ymax*0.95);
-$tt->Stroke($g->img,$scale);
-
-// .. and stream it all back
-$g->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/canvasbezierex1.php b/#jpgraph/src/Examples/canvasbezierex1.php
deleted file mode 100644
index 36febdf5..00000000
--- a/#jpgraph/src/Examples/canvasbezierex1.php
+++ /dev/null
@@ -1,40 +0,0 @@
-title->Set('Bezier line with control points');
-
-// Setup control point for bezier
-$p = array(3,6,
- 6,9,
- 5,3,
- 7,4);
-
-// Visualize control points
-$shape->SetColor('blue');
-$shape->Line($p[0],$p[1],$p[2],$p[3]);
-$shape->FilledCircle($p[2],$p[3],-6);
-
-$shape->SetColor('red');
-$shape->Line($p[4],$p[5],$p[6],$p[7]);
-$shape->FilledCircle($p[4],$p[5],-6);
-
-// Draw bezier
-$shape->SetColor('black');
-$shape->Bezier($p);
-
-// Frame it with a square
-$shape->SetColor('navy');
-$shape->Rectangle(0.5,2,9.5,9.5);
-
-// ... and stroke it
-$g->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/canvasex01.php b/#jpgraph/src/Examples/canvasex01.php
deleted file mode 100644
index 68839155..00000000
--- a/#jpgraph/src/Examples/canvasex01.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetMargin(5,11,6,11);
-$g->SetShadow();
-$g->SetMarginColor("teal");
-
-// We need to stroke the plotarea and margin before we add the
-// text since we otherwise would overwrite the text.
-$g->InitFrame();
-
-// Draw a text box in the middle
-$txt="This\nis\na TEXT!!!";
-$t = new Text($txt,200,10);
-$t->SetFont(FF_ARIAL,FS_BOLD,40);
-
-// How should the text box interpret the coordinates?
-$t->Align('center','top');
-
-// How should the paragraph be aligned?
-$t->ParagraphAlign('center');
-
-// Add a box around the text, white fill, black border and gray shadow
-$t->SetBox("white","black","gray");
-
-// Stroke the text
-$t->Stroke($g->img);
-
-// Stroke the graph
-$g->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/canvasex02.php b/#jpgraph/src/Examples/canvasex02.php
deleted file mode 100644
index 20807622..00000000
--- a/#jpgraph/src/Examples/canvasex02.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetMargin(5,11,6,11);
-$g->SetShadow();
-$g->SetMarginColor("teal");
-
-// We need to stroke the plotarea and margin before we add the
-// text since we otherwise would overwrite the text.
-$g->InitFrame();
-
-// Add a black line
-$g->img->SetColor('black');
-$g->img->Line(0,0,100,100);
-
-// .. and a circle (x,y,diameter)
-$g->img->Circle(100,100,50);
-
-// .. and a filled circle (x,y,diameter)
-$g->img->SetColor('red');
-$g->img->FilledCircle(200,100,50);
-
-// .. add a rectangle
-$g->img->SetColor('green');
-$g->img->FilledRectangle(10,10,50,50);
-
-// .. add a filled rounded rectangle
-$g->img->SetColor('green');
-$g->img->FilledRoundedRectangle(300,30,350,80,10);
-// .. with a darker border
-$g->img->SetColor('darkgreen');
-$g->img->RoundedRectangle(300,30,350,80,10);
-
-// Stroke the graph
-$g->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/canvasex03.php b/#jpgraph/src/Examples/canvasex03.php
deleted file mode 100644
index dad3c55b..00000000
--- a/#jpgraph/src/Examples/canvasex03.php
+++ /dev/null
@@ -1,58 +0,0 @@
-SetMargin(5,11,6,11);
-$g->SetShadow();
-$g->SetMarginColor("teal");
-
-// We need to stroke the plotarea and margin before we add the
-// text since we otherwise would overwrite the text.
-$g->InitFrame();
-
-// Create a new scale
-$scale = new CanvasScale($g);
-$scale->Set(0,$xmax,0,$ymax);
-
-// The shape class is wrapper around the Imgae class which translates
-// the coordinates for us
-$shape = new Shape($g,$scale);
-$shape->SetColor('black');
-
-
-// Add a black line
-$shape->SetColor('black');
-$shape->Line(0,0,20,20);
-
-// .. and a circle (x,y,diameter)
-$shape->Circle(5,14,2);
-
-// .. and a filled circle (x,y,diameter)
-$shape->SetColor('red');
-$shape->FilledCircle(11,8,3);
-
-// .. add a rectangle
-$shape->SetColor('green');
-$shape->FilledRectangle(15,8,19,14);
-
-// .. add a filled rounded rectangle
-$shape->SetColor('green');
-$shape->FilledRoundedRectangle(2,3,8,6);
-// .. with a darker border
-$shape->SetColor('darkgreen');
-$shape->RoundedRectangle(2,3,8,6);
-
-
-// Stroke the graph
-$g->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/canvasex04.php b/#jpgraph/src/Examples/canvasex04.php
deleted file mode 100644
index 3e6ac9f9..00000000
--- a/#jpgraph/src/Examples/canvasex04.php
+++ /dev/null
@@ -1,58 +0,0 @@
-SetMargin(5,11,6,11);
-$g->SetShadow();
-$g->SetMarginColor("teal");
-
-// We need to stroke the plotarea and margin before we add the
-// text since we otherwise would overwrite the text.
-$g->InitFrame();
-
-// Create a new scale
-$scale = new CanvasScale($g);
-$scale->Set(0,$xmax,0,$ymax);
-
-// The shape class is wrapper around the Imgae class which translates
-// the coordinates for us
-$shape = new Shape($g,$scale);
-$shape->SetColor('black');
-
-
-// Add a black line
-$shape->SetColor('black');
-$shape->Line(0,0,20,20);
-
-// .. and a circle (x,y,diameter)
-$shape->Circle(5,14,2);
-
-// .. and a filled circle (x,y,diameter)
-$shape->SetColor('red');
-$shape->FilledCircle(11,8,3);
-
-// .. add a rectangle
-$shape->SetColor('green');
-$shape->FilledRectangle(15,8,19,14);
-
-// .. add a filled rounded rectangle
-$shape->SetColor('green');
-$shape->FilledRoundedRectangle(2,3,8,6);
-// .. with a darker border
-$shape->SetColor('darkgreen');
-$shape->RoundedRectangle(2,3,8,6);
-
-
-// Stroke the graph
-$g->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/canvasex05.php b/#jpgraph/src/Examples/canvasex05.php
deleted file mode 100644
index 46139842..00000000
--- a/#jpgraph/src/Examples/canvasex05.php
+++ /dev/null
@@ -1,58 +0,0 @@
-SetMargin(5,11,6,11);
-$g->SetShadow();
-$g->SetMarginColor("teal");
-
-// We need to stroke the plotarea and margin before we add the
-// text since we otherwise would overwrite the text.
-$g->InitFrame();
-
-// Create a new scale
-$scale = new CanvasScale($g);
-$scale->Set(0,$xmax,0,$ymax);
-
-// The shape class is wrapper around the Imgae class which translates
-// the coordinates for us
-$shape = new Shape($g,$scale);
-$shape->SetColor('black');
-
-
-// Add a black line
-$shape->SetColor('black');
-$shape->Line(0,0,20,20);
-
-// .. and a circle (x,y,diameter)
-$shape->Circle(5,14,2);
-
-// .. and a filled circle (x,y,diameter)
-$shape->SetColor('red');
-$shape->FilledCircle(11,8,3);
-
-// .. add a rectangle
-$shape->SetColor('green');
-$shape->FilledRectangle(15,8,19,14);
-
-// .. add a filled rounded rectangle
-$shape->SetColor('green');
-$shape->FilledRoundedRectangle(2,3,8,6);
-// .. with a darker border
-$shape->SetColor('darkgreen');
-$shape->RoundedRectangle(2,3,8,6);
-
-
-// Stroke the graph
-$g->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/canvasex06.php b/#jpgraph/src/Examples/canvasex06.php
deleted file mode 100644
index b475c68d..00000000
--- a/#jpgraph/src/Examples/canvasex06.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetMargin(5,11,6,11);
-$g->SetShadow();
-$g->SetMarginColor("teal");
-
-// We need to stroke the plotarea and margin before we add the
-// text since we otherwise would overwrite the text.
-$g->InitFrame();
-
-// Create a new scale
-$scale = new CanvasScale($g);
-$scale->Set(0,$xmax,0,$ymax);
-
-// The shape class is wrapper around the Imgae class which translates
-// the coordinates for us
-$shape = new Shape($g,$scale);
-$shape->SetColor('black');
-
-$shape->IndentedRectangle(1,2,15,15,8,8,CORNER_TOPLEFT,'khaki');
-
-$shape->IndentedRectangle(1,20,15,15,8,8,CORNER_BOTTOMLEFT,'khaki');
-
-$shape->IndentedRectangle(20,2,15,15,8,8,CORNER_TOPRIGHT,'khaki');
-
-$shape->IndentedRectangle(20,20,15,15,8,8,CORNER_BOTTOMRIGHT,'khaki');
-
-// Stroke the graph
-$g->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/canvaspiralex1.php b/#jpgraph/src/Examples/canvaspiralex1.php
deleted file mode 100644
index 5d72b920..00000000
--- a/#jpgraph/src/Examples/canvaspiralex1.php
+++ /dev/null
@@ -1,78 +0,0 @@
-SetColor($color1);
- $img->Line($x,$y,$x+$s1*$w,$y);
- }
- else {
- $x = $x + $s2*$w*$r;
- $w = (1-$r)*$w;
- $h = $h / (1-$r) * $r;
- $s2 *= -1;
- $img->SetColor($color1);
- $img->Line($x,$y,$x,$y-$s2*$h);
- }
- $img->SetColor($color2);
- $img->FilledRectangle($x-1,$y-1,$x+1,$y+1);
- $img->Arc($x,$y,2*$w+1,2*$h+1,$sa,$ea);
- $img->Arc($x,$y,2*$w,2*$h,$sa,$ea);
- $img->Arc($x,$y,2*$w-1,2*$h-1,$sa,$ea);
- $img->Line($x_old,$y_old,$x,$y);
- $x_old=$x; $y_old=$y;
- }
-}
-
-$g = new CanvasGraph($w,$h);
-//$gr = 1.61803398874989484820;
-
-$p = SeaShell($g->img,0,20,$w-1,$h-21,$r,19);
-$g->img->SetColor('black');
-$g->img->Rectangle(0,20,$w-1,$h-1);
-$g->img->SetFont(FF_FONT2,FS_BOLD);
-$g->img->SetTextAlign('center','top');
-$g->img->StrokeText($w/2,0,"Canvas Spiral");
-
-$g->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/ccbp_ex1.php b/#jpgraph/src/Examples/ccbp_ex1.php
deleted file mode 100644
index 5071fd34..00000000
--- a/#jpgraph/src/Examples/ccbp_ex1.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetTitle('Buffer penetration','(history added)');
-$graph->SetColorMap(0);
-
- // Two "fake tasks with hostory
-$datax=array(75,83); $datay=array(110,64);
-$datax1 = array(33,50,67,83); $datay1 = array(86,76,80,64);
-$datax2 = array(18,47,58,75); $datay2 = array(80,97,105,110);
-
-$sp = new ScatterPlot($datay,$datax);
-$sp->mark->SetType(MARK_DIAMOND);
-$sp->mark->SetFillColor('white');
-$sp->mark->SetSize(12);
-
-$sp_hist = array();
-$sp_hist[0] = new LinePlot($datay1,$datax1);
-$sp_hist[0]->SetWeight(1);
-$sp_hist[0]->SetColor('white');
-
-$sp_hist[1] = new LinePlot($datay2,$datax2);
-$sp_hist[1]->SetWeight(1);
-$sp_hist[1]->SetColor('white');
-
-$graph->Add($sp_hist);
-$graph->Add($sp);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/ccbp_ex2.php b/#jpgraph/src/Examples/ccbp_ex2.php
deleted file mode 100644
index c5decd30..00000000
--- a/#jpgraph/src/Examples/ccbp_ex2.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetTitle('Buffer penetration','(history added)');
-$graph->SetColorMap(1);
-
- // Two "fake tasks with hostory
-$datax=array(75,83); $datay=array(110,64);
-$datax1 = array(33,50,67,83); $datay1 = array(86,76,80,64);
-$datax2 = array(18,47,58,75); $datay2 = array(80,97,105,110);
-
-$sp = new ScatterPlot($datay,$datax);
-$sp->mark->SetType(MARK_DIAMOND);
-$sp->mark->SetFillColor('white');
-$sp->mark->SetSize(12);
-
-$sp_hist = array();
-$sp_hist[0] = new LinePlot($datay1,$datax1);
-$sp_hist[0]->SetWeight(1);
-$sp_hist[0]->SetColor('white');
-
-$sp_hist[1] = new LinePlot($datay2,$datax2);
-$sp_hist[1]->SetWeight(1);
-$sp_hist[1]->SetColor('white');
-
-$graph->Add($sp_hist);
-$graph->Add($sp);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/ccbpgraph.class.php b/#jpgraph/src/Examples/ccbpgraph.class.php
deleted file mode 100644
index 91954e1e..00000000
--- a/#jpgraph/src/Examples/ccbpgraph.class.php
+++ /dev/null
@@ -1,257 +0,0 @@
-iWidth = $aWidth;
- $this->iHeight = $aHeight;
- }
- /**
- * Set the title and subtitle for the graph
- *
- * @param string $aTitle
- * @param string $aSubTitle
- */
- public function SetTitle($aTitle, $aSubTitle) {
- $this->iTitle = $aTitle;
- $this->iSubTitle = $aSubTitle;
- }
- /**
- * Set the x-axis min and max values
- *
- * @param int $aMin
- * @param int $aMax
- */
- public function SetXMinMax($aMin, $aMax) {
- $this->iXMin = floor($aMin/CCBPGraph::TickStep)*CCBPGraph::TickStep;
- $this->iXMax = ceil($aMax/CCBPGraph::TickStep)*CCBPGraph::TickStep;
- }
- /**
- * Specify what color map to use
- *
- * @param int $aMap
- */
- public function SetColorMap($aMap) {
- $this->iColorMap = $aMap % CCBPGraph::NColorMaps;
- }
- /**
- * Set the y-axis min and max values
- *
- * @param int $aMin
- * @param int $aMax
- */
- public function SetYMinMax($aMin,$aMax) {
- $this->iYMin = floor($aMin/CCBPGraph::TickStep)*CCBPGraph::TickStep;
- $this->iYMax = ceil($aMax/CCBPGraph::TickStep)*CCBPGraph::TickStep;
- }
- /**
- * Set the specification of the color backgrounds and also the
- * optional exact colors to be used
- *
- * @param mixed $aSpec An array of 3 1x2 arrays. Each array specify the
- * color indication value at x=0 and x=max x in order to determine the slope
- * @param mixed $aColors An array with four elements specifying the colors
- * of each color indicator
- */
- public function SetColorIndication(array $aSpec,array $aColors=null) {
- if( count($aSpec) !== 3 ) {
- JpgraphError::Raise('Specification of scale values for background indicators must be an array with three elements.');
- }
- $this->iColorInd = $aSpec;
- if( $aColors !== null ) {
- if( is_array($aColors) && count($aColors) == 4 ) {
- $this->iColorSpec = $aColors;
- }
- else {
- JpGraphError::Raise('Color specification for background indication must have four colors.');
- }
- }
- }
- /**
- * Construct the graph
- *
- */
- private function Init() {
-
- // Setup limits for color indications
- $lowx = $this->iXMin; $highx= $this->iXMax;
- $lowy = $this->iYMin; $highy = $this->iYMax;
- $width=$this->iWidth; $height=$this->iHeight;
-
- // Margins
- $lm=50; $rm=40;
- $tm=60; $bm=40;
-
- if( $width <= 300 || $height <= 250 ) {
- $labelsize = 8;
- $lm=25; $rm=25;
- $tm=45; $bm=25;
- }
- elseif( $width <= 450 || $height <= 300 ) {
- $labelsize = 8;
- $lm=30; $rm=30;
- $tm=50; $bm=30;
- }
- elseif( $width <= 600 || $height <= 400 ) {
- $labelsize = 9;
- }
- else {
- $labelsize = 11;
- }
-
- if( $this->iSubTitle == '' ) {
- $tm -= $labelsize+4;
- }
-
- $graph = new Graph($width,$height);
- $graph->SetScale('intint',$lowy,$highy,$lowx,$highx);
- $graph->SetMargin($lm,$rm,$tm,$bm);
- $graph->SetMarginColor($this->iMarginColor[$this->iColorMap]);
- $graph->SetClipping();
-
- $graph->title->Set($this->iTitle);
- $graph->subtitle->Set($this->iSubTitle);
-
- $graph->title->SetFont(FF_ARIAL,FS_BOLD,$labelsize+4);
- $graph->subtitle->SetFont(FF_ARIAL,FS_BOLD,$labelsize+1);
-
- $graph->SetBox(true,'black@0.3');
-
- $graph->xaxis->SetFont(FF_ARIAL,FS_BOLD,$labelsize);
- $graph->yaxis->SetFont(FF_ARIAL,FS_BOLD,$labelsize);
-
- $graph->xaxis->scale->ticks->Set(CCBPGraph::TickStep,CCBPGraph::TickStep);
- $graph->yaxis->scale->ticks->Set(CCBPGraph::TickStep,CCBPGraph::TickStep);
-
- $graph->xaxis->HideZeroLabel();
- $graph->yaxis->HideZeroLabel();
-
- $graph->xaxis->SetLabelFormatString('%d%%');
- $graph->yaxis->SetLabelFormatString('%d%%');
-
- // For the x-axis we adjust the color so labels on the left of the Y-axis are in black
- $n1 = floor(abs($this->iXMin/25))+1;
- $n2 = floor($this->iXMax/25);
- if( $this->iColorMap == 0 ) {
- $xlcolors=array();
- for( $i = 0; $i < $n1; ++$i ) {
- $xlcolors[$i] = 'black';
- }
- for( $i = 0; $i < $n2; ++$i ) {
- $xlcolors[$n1+$i] = 'lightgray:1.5';
- }
- $graph->xaxis->SetColor('gray',$xlcolors);
- $graph->yaxis->SetColor('gray','lightgray:1.5');
- }
- else {
- $graph->xaxis->SetColor('darkgray','darkgray:0.8');
- $graph->yaxis->SetColor('darkgray','darkgray:0.8');
- }
- $graph->SetGridDepth(DEPTH_FRONT);
- $graph->ygrid->SetColor('gray@0.6');
- $graph->ygrid->SetLineStyle('dotted');
-
- $graph->ygrid->Show();
-
- $graph->xaxis->SetWeight(1);
- $graph->yaxis->SetWeight(1);
-
- $ytitle = new Text(CCBPGraph::YTitle,floor($lm*.75),($height-$tm-$bm)/2+$tm);
- #$ytitle->SetFont(FF_VERA,FS_BOLD,$labelsize+1);
- $ytitle->SetAlign('right','center');
- $ytitle->SetAngle(90);
- $graph->Add($ytitle);
-
- $xtitle = new Text(CCBPGraph::XTitle,($width-$lm-$rm)/2+$lm,$height - 10);
- #$xtitle->SetFont(FF_VERA,FS_BOLD,$labelsize);
- $xtitle->SetAlign('center','bottom');
- $graph->Add($xtitle);
-
- $df = 'D j:S M, Y';
- if( $width < 400 ) {
- $df = 'D j:S M';
- }
-
- $time = new Text(date($df),$width-10,$height-10);
- $time->SetAlign('right','bottom');
- #$time->SetFont(FF_VERA,FS_NORMAL,$labelsize-1);
- $time->SetColor('darkgray');
- $graph->Add($time);
-
- // Use an accumulated fille line graph to create the colored bands
-
- $n = 3;
- for( $i=0; $i < $n; ++$i ) {
- $b = $this->iColorInd[$i][0];
- $k = ($this->iColorInd[$i][1] - $this->iColorInd[$i][0])/$this->iXMax;
- $colarea[$i] = array( array($lowx,$lowx*$k+$b), array($highx,$highx*$k+$b) );
- }
- $colarea[3] = array( array($lowx,$highy), array($highx,$highy) );
-
-
- $cb = array();
- for( $i=0; $i < 4; ++$i ) {
- $cb[$i] = new LinePlot(array($colarea[$i][0][1],$colarea[$i][1][1]),
- array($colarea[$i][0][0],$colarea[$i][1][0]));
- $cb[$i]->SetFillColor($this->iColorSpec[$this->iColorMap][$i]);
- $cb[$i]->SetFillFromYMin();
- }
-
- $graph->Add(array_slice(array_reverse($cb),0,4));
- $this->graph = $graph;
- }
- /**
- * Add a line or scatter plot to the graph
- *
- * @param mixed $aPlots
- */
- public function Add($aPlots) {
- if( is_array($aPlots) ) {
- $this->iPlots = array_merge($this->iPlots,$aPlots);
- }
- else {
- $this->iPlots[] = $aPlots;
- }
- }
- /**
- * Stroke the graph back to the client or to a file
- *
- * @param mixed $aFile
- */
- public function Stroke($aFile='') {
- $this->Init();
- if( count($this->iPlots) > 0 ) {
- $this->graph->Add($this->iPlots);
- }
- $this->graph->Stroke($aFile);
- }
-}
-?>
diff --git a/#jpgraph/src/Examples/centeredlineex01.php b/#jpgraph/src/Examples/centeredlineex01.php
deleted file mode 100644
index 3642f3a4..00000000
--- a/#jpgraph/src/Examples/centeredlineex01.php
+++ /dev/null
@@ -1,35 +0,0 @@
-img->SetMargin(40,40,40,40);
-$graph->img->SetAntiAliasing();
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->title->Set("Example of line centered plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-
-// Use 20% "grace" to get slightly larger scale then min/max of
-// data
-$graph->yscale->SetGrace(20);
-
-
-$p1 = new LinePlot($datay);
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$p1->SetColor("blue");
-$p1->SetCenter();
-$graph->Add($p1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/centeredlineex02.php b/#jpgraph/src/Examples/centeredlineex02.php
deleted file mode 100644
index 2b742290..00000000
--- a/#jpgraph/src/Examples/centeredlineex02.php
+++ /dev/null
@@ -1,30 +0,0 @@
-img->SetMargin(40,40,40,40);
-$graph->img->SetAntiAliasing();
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->title->Set("Example of filled line centered plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new LinePlot($datay);
-$p1->SetFillColor("green");
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$p1->SetColor("blue");
-$p1->SetCenter();
-$graph->Add($p1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/centeredlineex03.php b/#jpgraph/src/Examples/centeredlineex03.php
deleted file mode 100644
index 9c182a74..00000000
--- a/#jpgraph/src/Examples/centeredlineex03.php
+++ /dev/null
@@ -1,31 +0,0 @@
-img->SetMargin(40,40,40,80);
-$graph->img->SetAntiAliasing();
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->title->Set("Example slanted X-labels");
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,14);
-
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,11);
-$graph->xaxis->SetTickLabels($labels);
-$graph->xaxis->SetLabelAngle(45);
-
-$p1 = new LinePlot($datay);
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$p1->SetColor("blue");
-$p1->SetCenter();
-$graph->Add($p1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/centerlinebarex1.php b/#jpgraph/src/Examples/centerlinebarex1.php
deleted file mode 100644
index d686bc6b..00000000
--- a/#jpgraph/src/Examples/centerlinebarex1.php
+++ /dev/null
@@ -1,35 +0,0 @@
-img->SetMargin(40,80,40,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-$graph->title->Set('Center the line points in bars');
-
-$line = new LinePlot($ydata);
-$line->SetBarCenter();
-$line->SetWeight(2);
-
-$bar = new BarPlot($ydata);
-$bar2 = new BarPlot($ydata);
-$bar2->SetFillColor("red");
-
-$gbar = new GroupbarPlot(array($bar,$bar2));
-
-$graph->Add($gbar);
-$graph->Add($line);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/checkgd.php b/#jpgraph/src/Examples/checkgd.php
deleted file mode 100644
index ad252bd2..00000000
--- a/#jpgraph/src/Examples/checkgd.php
+++ /dev/null
@@ -1,11 +0,0 @@
-
diff --git a/#jpgraph/src/Examples/checkgd2.php b/#jpgraph/src/Examples/checkgd2.php
deleted file mode 100644
index e5e7b3c5..00000000
--- a/#jpgraph/src/Examples/checkgd2.php
+++ /dev/null
@@ -1,14 +0,0 @@
-
diff --git a/#jpgraph/src/Examples/checkttf.php b/#jpgraph/src/Examples/checkttf.php
deleted file mode 100644
index 5efe737f..00000000
--- a/#jpgraph/src/Examples/checkttf.php
+++ /dev/null
@@ -1,22 +0,0 @@
-
diff --git a/#jpgraph/src/Examples/classroom.jpg b/#jpgraph/src/Examples/classroom.jpg
deleted file mode 100644
index f4cc06c4..00000000
Binary files a/#jpgraph/src/Examples/classroom.jpg and /dev/null differ
diff --git a/#jpgraph/src/Examples/clipping_ex1.php b/#jpgraph/src/Examples/clipping_ex1.php
deleted file mode 100644
index 8629fce4..00000000
--- a/#jpgraph/src/Examples/clipping_ex1.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetScale('intlin',0,10);
-$graph->SetMargin(30,20,70,40);
-$graph->SetMarginColor(array(177,191,174));
-
-$graph->SetClipping(false);
-
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->ygrid->SetLineStyle('dashed');
-
-$graph->title->Set("Manual scale");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->title->SetColor('white');
-$graph->subtitle->Set("(No clipping)");
-$graph->subtitle->SetColor('white');
-$graph->subtitle->SetFont(FF_ARIAL,FS_BOLD,10);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor("red");
-$lineplot->SetWeight(2);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/clipping_ex2.php b/#jpgraph/src/Examples/clipping_ex2.php
deleted file mode 100644
index aba939f9..00000000
--- a/#jpgraph/src/Examples/clipping_ex2.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetScale('intlin',0,10);
-$graph->SetMargin(30,20,70,40);
-$graph->SetMarginColor(array(177,191,174));
-
-$graph->SetClipping(true);
-
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->ygrid->SetLineStyle('dashed');
-
-$graph->title->Set("Manual scale");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->title->SetColor('white');
-$graph->subtitle->Set("(With clipping)");
-$graph->subtitle->SetColor('white');
-$graph->subtitle->SetFont(FF_ARIAL,FS_BOLD,10);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor("red");
-$lineplot->SetWeight(2);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/colormaps.php b/#jpgraph/src/Examples/colormaps.php
deleted file mode 100644
index 2f9470f0..00000000
--- a/#jpgraph/src/Examples/colormaps.php
+++ /dev/null
@@ -1,133 +0,0 @@
-img->SetColor('darkgray');
- $graph->img->Rectangle(0,0,$width-1,$height-1);
-
- $t = new Text($aTitle, $width/2,5);
- $t->SetAlign('center','top');
- $t->SetFont(FF_ARIAL,FS_BOLD,14);
- $t->Stroke($graph->img);
-
- // Instantiate a colormap
- $cm = new ColorMap();
- $cm->InitRGB($graph->img->rgb);
-
- for( $mapidx=$aStart; $mapidx <= $aEnd; ++$mapidx, $ys += $ymarg ) {
-
- $cm->SetMap($mapidx,$aReverse);
- $n = $cm->SetNumColors($n);
- list( $mapidx, $maparray ) = $cm->GetCurrMap();
- $ncols = count($maparray);
- $colbuckets = $cm->GetBuckets();
-
- // The module width will depend on the actual number of colors
- $mw = round(($width-$lmarg-$rmarg)/$n);
-
- // Draw color map title (name)
- $t->Set('Basic colors: '.$ncols.', Total colors: '.$n);
- $t->SetAlign('center','bottom');
- $t->SetAngle(0);
- $t->SetFont(FF_TIMES,FS_NORMAL,14);
- $t->Stroke($graph->img,$width/2,$ys-3);
-
- // Add the name/number of the map to the left
- $t->SetAlign('right','center');
- $t->Set('Map: '.$mapidx);
- $t->SetFont(FF_ARIAL,FS_NORMAL,14);
- $t->Stroke($graph->img,$xs-20,round($ys+$mh/2));
-
- // Setup text properties for the color names
- if( $addColorNames ) {
- $t->SetAngle(30);
- $t->SetFont(FF_ARIAL,FS_NORMAL,12);
- $t->SetAlign('right','top');
- }
-
- // Loop through all colors in the map
- $x = $xs; $y = $ys; $k=0;
- for($i=0; $i < $n; ++$i){
- $graph->img->SetColor($colbuckets[$i]);
- $graph->img->FilledRectangle($x,$y,$x+$mw,$y+$mh);
-
- // Mark all basic colors in the map with a bar and name
- if( $i % (($n-$ncols)/($ncols-1)+1) == 0 ) {
- $graph->img->SetColor('black');
- $graph->img->FilledRectangle($x,$y+$mh+4,$x+$mw-1,$y+$mh+6);
- if( $addColorNames ) {
- $t->Set($maparray[$k++]);
- $t->Stroke($graph->img,$x+$mw/2,$y+$mh+10);
- }
- }
- $x += $mw;
- }
-
- // Draw a border around the map
- $graph->img->SetColor('black');
- $graph->img->Rectangle($xs,$ys,$xs+$mw*$n,$ys+$mh);
-
- }
-
- // Send back to client
- $graph->Stroke();
- }
-
-}
-
-$driver = new ColorMapDriver();
-
-$title = "Standard maps";
-$reverse = false;
-$n = 64; $s=0; $e=9;
-$showNames = false;
-
-
-/*
-$title = "Center maps";
-$reverse = false;
-$n = 64; $s=10; $e=14;
-$showNames = false;
-*/
-
-/*
-$title = "Continues maps";
-$reverse = false;
-$n = 64; $s=15; $e=21;
-$showNames = false;
-*/
-$driver->Draw($title,$s,$e,$n,$reverse,$showNames);
-
-?>
diff --git a/#jpgraph/src/Examples/comb90dategraphex01.php b/#jpgraph/src/Examples/comb90dategraphex01.php
deleted file mode 100644
index 32948225..00000000
--- a/#jpgraph/src/Examples/comb90dategraphex01.php
+++ /dev/null
@@ -1,96 +0,0 @@
- 359)
- $data_winddirection[$i+1] = 0;
-
- $data_windspeed[$i+1] = $data_windspeed[$i] + rand(-2,2);
- if($data_windspeed[$i+1] < 0 )
- $data_windspeed[$i+1] = 0;
-
- $xdata[$i] = $start + $i * SAMPLERATE;
-}
-$xdata[$i] = $start + $i * SAMPLERATE;
-
-
-// Setup the Wind direction graph
-$graph = new Graph(300,800);
-$graph->SetMarginColor('lightgray:1.7');
-$graph->SetScale('datlin',0,360);
-$graph->Set90AndMargin(50,30,60,30);
-$graph->SetFrame(true,'white',0);
-$graph->SetBox();
-
-$graph->title->Set('Wind direction');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->title->SetMargin(10);
-
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xaxis->scale->SetDateFormat('h:i');
-$graph->xgrid->Show();
-
-$graph->yaxis->SetLabelAngle(45);
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetLabelMargin(0);
-$graph->yaxis->scale->SetAutoMin(0);
-
-$line = new LinePlot($data_winddirection,$xdata);
-$line->SetStepStyle();
-$line->SetColor('blue');
-
-$graph->Add($line);
-
-// Setup the wind speed graph
-$graph2 = new Graph(300,800);
-$graph2->SetScale('datlin');
-$graph2->Set90AndMargin(50,30,60,30);
-$graph2->SetMarginColor('lightgray:1.7');
-$graph2->SetFrame(true,'white',0);
-$graph2->SetBox();
-
-$graph2->title->Set('Windspeed');
-$graph2->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph2->title->SetMargin(10);
-
-$graph2->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph2->xaxis->scale->SetDateFormat('h:i');
-$graph2->xgrid->Show();
-
-$graph2->yaxis->SetLabelAngle(45);
-$graph2->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph2->yaxis->SetLabelMargin(0);
-$graph2->yaxis->scale->SetAutoMin(0);
-
-$line2 = new LinePlot($data_windspeed,$xdata);
-$line2->SetStepStyle();
-$line2->SetColor('red');
-
-$graph2->Add($line2);
-
-//-----------------------
-// Create a multigraph
-//----------------------
-$mgraph = new MGraph();
-$mgraph->SetMargin(2,2,2,2);
-$mgraph->SetFrame(true,'darkgray',2);
-$mgraph->SetFillColor('lightgray');
-$mgraph->Add($graph);
-$mgraph->Add($graph2,300,0);
-$mgraph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/comb90dategraphex02.php b/#jpgraph/src/Examples/comb90dategraphex02.php
deleted file mode 100644
index b6671811..00000000
--- a/#jpgraph/src/Examples/comb90dategraphex02.php
+++ /dev/null
@@ -1,103 +0,0 @@
- 359)
- $data_winddirection[$i+1] = 0;
-
- $data_windspeed[$i+1] = $data_windspeed[$i] + rand(-2,2);
- if($data_windspeed[$i+1] < 0 )
- $data_windspeed[$i+1] = 0;
-
- $xdata[$i] = $start + $i * SAMPLERATE;
-}
-$xdata[$i] = $start + $i * SAMPLERATE;
-
-
-DEFINE('BKG_COLOR','lightgray:1.7');
-DEFINE('WIND_HEIGHT',800);
-DEFINE('WIND_WIDTH',280);
-
-// Setup the Wind direction graph
-$graph = new Graph(WIND_WIDTH,WIND_HEIGHT);
-$graph->SetMarginColor(BKG_COLOR);
-$graph->SetScale('datlin',0,360);
-$graph->Set90AndMargin(50,10,60,30);
-$graph->SetFrame(true,'white',0);
-$graph->SetBox();
-
-$graph->title->Set('Wind direction');
-$graph->title->SetColor('blue');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->title->SetMargin(5);
-
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xaxis->scale->SetDateFormat('h:i');
-$graph->xgrid->Show();
-
-$graph->yaxis->SetLabelAngle(90);
-$graph->yaxis->SetColor('blue');
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetLabelMargin(0);
-$graph->yaxis->scale->SetAutoMin(0);
-
-$line = new LinePlot($data_winddirection,$xdata);
-$line->SetStepStyle();
-$line->SetColor('blue');
-
-$graph->Add($line);
-
-// Setup the wind speed graph
-$graph2 = new Graph(WIND_WIDTH-30,WIND_HEIGHT);
-$graph2->SetScale('datlin');
-$graph2->Set90AndMargin(5,20,60,30);
-$graph2->SetMarginColor(BKG_COLOR);
-$graph2->SetFrame(true,'white',0);
-$graph2->SetBox();
-
-$graph2->title->Set('Windspeed');
-$graph2->title->SetColor('red');
-$graph2->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph2->title->SetMargin(5);
-
-$graph2->xaxis->HideLabels();
-$graph2->xgrid->Show();
-
-$graph2->yaxis->SetLabelAngle(90);
-$graph2->yaxis->SetColor('red');
-$graph2->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph2->yaxis->SetLabelMargin(0);
-$graph2->yaxis->scale->SetAutoMin(0);
-
-$line2 = new LinePlot($data_windspeed,$xdata);
-$line2->SetStepStyle();
-$line2->SetColor('red');
-
-$graph2->Add($line2);
-
-//-----------------------
-// Create a multigraph
-//----------------------
-$mgraph = new MGraph();
-$mgraph->SetMargin(2,2,2,2);
-$mgraph->SetFrame(true,'darkgray',2);
-$mgraph->SetFillColor(BKG_COLOR);
-$mgraph->Add($graph);
-$mgraph->Add($graph2,280,0);
-$mgraph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/comb90dategraphex03.php b/#jpgraph/src/Examples/comb90dategraphex03.php
deleted file mode 100644
index 2911f8b7..00000000
--- a/#jpgraph/src/Examples/comb90dategraphex03.php
+++ /dev/null
@@ -1,147 +0,0 @@
- 359)
- $data_winddirection[$i+1] = 0;
-
- $data_windspeed[$i+1] = $data_windspeed[$i] + rand(-2,2);
- if($data_windspeed[$i+1] < 0 )
- $data_windspeed[$i+1] = 0;
-
- $data_windtemp[$i+1] = $data_windtemp[$i] + rand(-1.5,1.5);
-
- $xdata[$i] = $start + $i * SAMPLERATE;
-}
-$xdata[$i] = $start + $i * SAMPLERATE;
-
-
-//DEFINE('BKG_COLOR','lightgray:1.7');
-DEFINE('BKG_COLOR','green:1.98');
-DEFINE('WIND_HEIGHT',800);
-DEFINE('WIND_WIDTH',250);
-
-//------------------------------------------------------------------
-// Setup the Wind direction graph
-//------------------------------------------------------------------
-$graph = new Graph(WIND_WIDTH,WIND_HEIGHT);
-$graph->SetMarginColor(BKG_COLOR);
-$graph->SetScale('datlin',0,360);
-$graph->Set90AndMargin(50,10,70,30);
-$graph->SetFrame(true,'white',0);
-$graph->SetBox();
-
-$graph->title->Set('Wind direction');
-$graph->title->SetColor('blue');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->title->SetMargin(5);
-
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->xaxis->scale->SetDateFormat('H:i');
-$graph->xgrid->Show();
-
-$graph->yaxis->SetLabelAngle(90);
-$graph->yaxis->SetColor('blue');
-$graph->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph->yaxis->SetLabelMargin(0);
-$graph->yaxis->scale->SetAutoMin(0);
-
-$line = new LinePlot($data_winddirection,$xdata);
-$line->SetStepStyle();
-$line->SetColor('blue');
-
-$graph->Add($line);
-
-//------------------------------------------------------------------
-// Setup the wind speed graph
-//------------------------------------------------------------------
-$graph2 = new Graph(WIND_WIDTH-30,WIND_HEIGHT);
-$graph2->SetScale('datlin');
-$graph2->Set90AndMargin(5,20,70,30);
-$graph2->SetMarginColor(BKG_COLOR);
-$graph2->SetFrame(true,'white',0);
-$graph2->SetBox();
-
-$graph2->title->Set('Windspeed');
-$graph2->title->SetColor('red');
-$graph2->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph2->title->SetMargin(5);
-
-$graph2->xaxis->HideLabels();
-$graph2->xgrid->Show();
-
-$graph2->yaxis->SetLabelAngle(90);
-$graph2->yaxis->SetColor('red');
-$graph2->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph2->yaxis->SetLabelMargin(0);
-$graph2->yaxis->scale->SetAutoMin(0);
-
-$line2 = new LinePlot($data_windspeed,$xdata);
-$line2->SetStepStyle();
-$line2->SetColor('red');
-
-$graph2->Add($line2);
-
-//------------------------------------------------------------------
-// Setup the wind temp graph
-//------------------------------------------------------------------
-$graph3 = new Graph(WIND_WIDTH-30,WIND_HEIGHT);
-$graph3->SetScale('datlin');
-$graph3->Set90AndMargin(5,20,70,30);
-$graph3->SetMarginColor(BKG_COLOR);
-$graph3->SetFrame(true,'white',0);
-$graph3->SetBox();
-
-$graph3->title->Set('Temperature');
-$graph3->title->SetColor('black');
-$graph3->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph3->title->SetMargin(5);
-
-$graph3->xaxis->HideLabels();
-$graph3->xgrid->Show();
-
-$graph3->yaxis->SetLabelAngle(90);
-$graph3->yaxis->SetColor('black');
-$graph3->yaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-$graph3->yaxis->SetLabelMargin(0);
-$graph3->yaxis->scale->SetAutoMin(-10);
-
-$line3 = new LinePlot($data_windtemp,$xdata);
-$line3->SetStepStyle();
-$line3->SetColor('black');
-
-$graph3->Add($line3);
-
-//-----------------------
-// Create a multigraph
-//----------------------
-$mgraph = new MGraph();
-$mgraph->SetMargin(2,2,2,2);
-$mgraph->SetFrame(true,'darkgray',2);
-$mgraph->SetFillColor(BKG_COLOR);
-$mgraph->Add($graph,0,50);
-$mgraph->Add($graph2,250,50);
-$mgraph->Add($graph3,460,50);
-$mgraph->title->Set('Climate diagram 12 March 2009');
-$mgraph->title->SetFont(FF_ARIAL,FS_BOLD,20);
-$mgraph->title->SetMargin(8);
-$mgraph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/combgraphex1.php b/#jpgraph/src/Examples/combgraphex1.php
deleted file mode 100644
index b03b14bb..00000000
--- a/#jpgraph/src/Examples/combgraphex1.php
+++ /dev/null
@@ -1,89 +0,0 @@
-getTicks($datax,DSUTILS_MONTH1);
-
-// Now create the real graph
-// Combine a line and a bar graph
-
-// We add some grace to the end of the X-axis scale so that the first and last
-// data point isn't exactly at the very end or beginning of the scale
-$grace = 400000;
-$xmin = $datax[0]-$grace;
-$xmax = $datax[$n-1]+$grace;;
-
-// Overall width of graphs
-$w = 450;
-// Left and right margin for each graph
-$lm=25; $rm=15;
-
-//----------------------
-// Setup the line graph
-//----------------------
-$graph = new Graph($w,250);
-$graph->SetScale('linlin',0,0,$xmin,$xmax);
-$graph->SetMargin($lm,$rm,10,30);
-$graph->SetMarginColor('white');
-$graph->SetFrame(false);
-$graph->SetBox(true);
-$graph->title->Set('Example of combined graph');
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,14);
-$graph->xaxis->SetTickPositions($tickPositions,$minTickPositions);
-$graph->xaxis->SetLabelFormatString('My',true);
-$graph->xgrid->Show();
-$p1 = new LinePlot($datay,$datax);
-$graph->Add($p1);
-
-//----------------------
-// Setup the bar graph
-//----------------------
-$graph2 = new Graph($w,110);
-$graph2->SetScale('linlin',0,0,$xmin,$xmax);
-$graph2->SetMargin($lm,$rm,5,10);
-$graph2->SetMarginColor('white');
-$graph2->SetFrame(false);
-$graph2->SetBox(true);
-$graph2->xgrid->Show();
-$graph2->xaxis->SetTickPositions($tickPositions,$minTickPositions);
-$graph2->xaxis->SetLabelFormatString('My',true);
-$graph2->xaxis->SetPos('max');
-$graph2->xaxis->HideLabels();
-$graph2->xaxis->SetTickSide(SIDE_DOWN);
-$b1 = new BarPlot($datay2,$datax);
-$b1->SetFillColor('teal');
-$b1->SetColor('teal:1.2');
-$graph2->Add($b1);
-
-//-----------------------
-// Create a multigraph
-//----------------------
-$mgraph = new MGraph();
-$mgraph->SetMargin(2,2,2,2);
-$mgraph->SetFrame(true,'darkgray',2);
-$mgraph->Add($graph);
-$mgraph->Add($graph2,0,240);
-$mgraph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/combgraphex2.php b/#jpgraph/src/Examples/combgraphex2.php
deleted file mode 100644
index 27afa832..00000000
--- a/#jpgraph/src/Examples/combgraphex2.php
+++ /dev/null
@@ -1,90 +0,0 @@
-SetScale('linlin',0,0,$xmin,$xmax);
-$graph->SetMargin($lm,$rm,10,30);
-$graph->SetMarginColor('white');
-$graph->SetFrame(false);
-$graph->SetBox(true);
-$graph->title->Set('Example of combined graph with background');
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,14);
-$graph->xaxis->SetTickPositions($tickPositions,$minTickPositions);
-$graph->xaxis->SetLabelFormatString('My',true);
-$graph->xgrid->Show();
-$p1 = new LinePlot($datay,$datax);
-$graph->Add($p1);
-
-//----------------------
-// Setup the bar graph
-//----------------------
-$graph2 = new Graph($w,110);
-$graph2->SetScale('linlin',0,0,$xmin,$xmax);
-$graph2->SetMargin($lm,$rm,5,10);
-$graph2->SetMarginColor('white');
-$graph2->SetFrame(false);
-$graph2->SetBox(true);
-$graph2->xgrid->Show();
-$graph2->xaxis->SetTickPositions($tickPositions,$minTickPositions);
-$graph2->xaxis->SetLabelFormatString('My',true);
-$graph2->xaxis->SetPos('max');
-$graph2->xaxis->HideLabels();
-$graph2->xaxis->SetTickSide(SIDE_DOWN);
-$b1 = new BarPlot($datay2,$datax);
-$b1->SetFillColor('teal');
-$b1->SetColor('teal:1.2');
-$graph2->Add($b1);
-
-//-----------------------
-// Create a multigraph
-//----------------------
-$mgraph = new MGraph();
-$mgraph->SetImgFormat('jpeg',60);
-$mgraph->SetMargin(2,2,2,2);
-$mgraph->SetFrame(true,'darkgray',2);
-$mgraph->SetBackgroundImage('tiger1.jpg');
-$mgraph->AddMix($graph,0,0,85);
-$mgraph->AddMix($graph2,0,250,85);
-$mgraph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/contour2_ex1.php b/#jpgraph/src/Examples/contour2_ex1.php
deleted file mode 100644
index 764a8f29..00000000
--- a/#jpgraph/src/Examples/contour2_ex1.php
+++ /dev/null
@@ -1,50 +0,0 @@
-SetMargin(30, 30, 40, 30);
-$graph->SetScale('intint');
-$graph->SetMarginColor('white');
-
-// Setup title of graph
-$graph->title->Set('Filled contour plot');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-
-$graph->subtitle->Set('(With lines and labels)');
-$graph->subtitle->SetFont(FF_VERDANA,FS_ITALIC,10);
-
-// Create a new contour plot
-$cp = new FilledContourPlot($data);
-
-// Use only blue/red color schema
-$cp->UseHighContrastColor(true);
-
-// Flip visually
-$cp->SetInvert();
-
-// Fill the contours
-$cp->SetFilled(true);
-
-// Display the labels
-$cp->ShowLabels(true,true);
-$cp->SetFont(FF_ARIAL,FS_BOLD,9);
-$cp->SetFontColor('white');
-
-// And add the plot to the graph
-$graph->Add($cp);
-
-// Send it back to the client
-$graph->stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contour2_ex2.php b/#jpgraph/src/Examples/contour2_ex2.php
deleted file mode 100644
index b702626b..00000000
--- a/#jpgraph/src/Examples/contour2_ex2.php
+++ /dev/null
@@ -1,51 +0,0 @@
-SetMargin(30, 30, 40, 30);
-$graph->SetScale('intint');
-$graph->SetMarginColor('white');
-
-// Setup title of graph
-$graph->title->Set('Filled contour plot');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-
-$graph->subtitle->Set('(No lines, no labels)');
-$graph->subtitle->SetFont(FF_VERDANA,FS_ITALIC,10);
-
-// Create a new contour plot
-$cp = new FilledContourPlot($data);
-
-// Use only blue/red color schema
-$cp->UseHighContrastColor(true);
-
-// Flip visually
-$cp->SetInvert();
-
-// Fill the contours
-$cp->SetFilled(true);
-
-// No labels
-$cp->ShowLabels(false);
-
-// No lines
-$cp->ShowLines(false);
-
-// And add the plot to the graph
-$graph->Add($cp);
-
-// Send it back to the client
-$graph->stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contour2_ex3.php b/#jpgraph/src/Examples/contour2_ex3.php
deleted file mode 100644
index 93f7611d..00000000
--- a/#jpgraph/src/Examples/contour2_ex3.php
+++ /dev/null
@@ -1,55 +0,0 @@
-SetMargin(30, 30, 40, 30);
-$graph->SetScale('intint');
-$graph->SetMarginColor('white');
-
-// Setup title of graph
-$graph->title->Set('Filled contour plot');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-
-$graph->subtitle->Set('(Manual colors)');
-$graph->subtitle->SetFont(FF_VERDANA,FS_ITALIC,10);
-
-// Create a new contour plot with only 3 isobars
-$cp = new FilledContourPlot($data,3);
-
-// Specify the colors manually
-$isobar_colors = array('lightgray','teal:1.3','orange','red');
-$cp->SetIsobarColors($isobar_colors);
-
-// Use only blue/red color schema
-$cp->UseHighContrastColor(true);
-
-// Flip visually
-$cp->SetInvert();
-
-// Fill the contours
-$cp->SetFilled(true);
-
-// Display labels
-$cp->ShowLabels(true);
-
-// No lines
-$cp->ShowLines(false);
-
-// And add the plot to the graph
-$graph->Add($cp);
-
-// Send it back to the client
-$graph->stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contour2_ex4.php b/#jpgraph/src/Examples/contour2_ex4.php
deleted file mode 100644
index 79e43e89..00000000
--- a/#jpgraph/src/Examples/contour2_ex4.php
+++ /dev/null
@@ -1,47 +0,0 @@
-SetMargin(30, 30, 40, 30);
-$graph->SetScale('intint');
-$graph->SetMarginColor('white');
-
-// Setup title of graph
-$graph->title->Set('Filled contour plot');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-
-$graph->subtitle->Set('(labels follows gradients)');
-$graph->subtitle->SetFont(FF_VERDANA,FS_ITALIC,10);
-
-// Create a new contour plot
-$cp = new FilledContourPlot($data,8);
-
-// Flip visually
-$cp->SetInvert();
-
-// Fill the contours
-$cp->SetFilled(true);
-
-// Display the labels
-$cp->ShowLabels(true,true);
-$cp->SetFont(FF_ARIAL,FS_BOLD,9);
-$cp->SetFontColor('black');
-
-// And add the plot to the graph
-$graph->Add($cp);
-
-// Send it back to the client
-$graph->stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contour2_ex5.php b/#jpgraph/src/Examples/contour2_ex5.php
deleted file mode 100644
index 1d3ac433..00000000
--- a/#jpgraph/src/Examples/contour2_ex5.php
+++ /dev/null
@@ -1,52 +0,0 @@
-SetMargin(30, 30, 40, 30);
-$graph->SetScale('intint');
-$graph->SetMarginColor('white');
-
-// Setup title of graph
-$graph->title->Set('Filled contour plot');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-
-$graph->subtitle->Set('(horizontal labels)');
-$graph->subtitle->SetFont(FF_VERDANA,FS_ITALIC,10);
-
-// Create a new contour plot
-$cp = new FilledContourPlot($data,8);
-
-// Use only black/and white schema
-$cp->UseHighContrastColor(true,true);
-
-// Flip visually
-$cp->SetInvert();
-
-// Fill the contours
-$cp->SetFilled(true);
-// Show lines in red
-$cp->ShowLines(true,'red');
-
-// Display the labels
-$cp->ShowLabels(true,false);
-$cp->SetFont(FF_ARIAL,FS_BOLD,9);
-$cp->SetFontColor('white');
-
-// And add the plot to the graph
-$graph->Add($cp);
-
-// Send it back to the client
-$graph->stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contour2_ex6.php b/#jpgraph/src/Examples/contour2_ex6.php
deleted file mode 100644
index 49755bee..00000000
--- a/#jpgraph/src/Examples/contour2_ex6.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetMargin(30, 30, 40, 30);
-$graph->SetScale('intint');
-$graph->SetMarginColor('white');
-
-// Setup title of graph
-$graph->title->Set('Filled contour plot');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-
-$graph->subtitle->Set('(With lines and labels)');
-$graph->subtitle->SetFont(FF_VERDANA,FS_ITALIC,10);
-
-// Create a new contour plot
-$cp = new FilledContourPlot($data,7);
-
-// Use only blue/red color schema
-$cp->UseHighContrastColor(true);
-
-// Flip visually
-$cp->SetInvert();
-
-// Fill the contours
-$cp->SetFilled(true);
-
-// Specify method to use
-$cp->SetMethod('rect');
-
-// Display the labels
-$cp->ShowLabels(true,true);
-$cp->SetFont(FF_ARIAL,FS_BOLD,9);
-$cp->SetFontColor('white');
-
-// And add the plot to the graph
-$graph->Add($cp);
-
-// Send it back to the client
-$graph->stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contour2_ex7.php b/#jpgraph/src/Examples/contour2_ex7.php
deleted file mode 100644
index b83d3dd9..00000000
--- a/#jpgraph/src/Examples/contour2_ex7.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetMargin(30, 30, 40, 30);
-$graph->SetScale('intint');
-$graph->SetMarginColor('white');
-
-// Setup title of graph
-$graph->title->Set('Filled contour plot');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-
-$graph->subtitle->Set('(With lines and labels)');
-$graph->subtitle->SetFont(FF_VERDANA,FS_ITALIC,10);
-
-// Create a new contour plot
-$cp = new FilledContourPlot($data,7);
-
-// Use only blue/red color schema
-$cp->UseHighContrastColor(true);
-
-// Flip visually
-$cp->SetInvert();
-
-// Fill the contours
-$cp->SetFilled(true);
-
-// Specify method to use
-$cp->SetMethod('tri');
-
-// Display the labels
-$cp->ShowLabels(true,true);
-$cp->SetFont(FF_ARIAL,FS_BOLD,9);
-$cp->SetFontColor('white');
-
-// And add the plot to the graph
-$graph->Add($cp);
-
-// Send it back to the client
-$graph->stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contourex01.php b/#jpgraph/src/Examples/contourex01.php
deleted file mode 100644
index eb2cb99c..00000000
--- a/#jpgraph/src/Examples/contourex01.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetMargin(40,140,60,40);
-
-$graph->title->Set('Example of contour plot');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-// For contour plots it is custom to use a box style ofr the axis
-$graph->legend->SetPos(0.05,0.5,'right','center');
-$graph->SetScale('intint');
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-$graph->xgrid->Show();
-$graph->ygrid->Show();
-
-
-// A simple contour plot with default arguments (e.g. 10 isobar lines)
-$cp = new ContourPlot($data);
-
-// Display the legend
-$cp->ShowLegend();
-
-// Make the isobar lines slightly thicker
-$cp->SetLineWeight(2);
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contourex02.php b/#jpgraph/src/Examples/contourex02.php
deleted file mode 100644
index 73dee150..00000000
--- a/#jpgraph/src/Examples/contourex02.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetMargin(40,140,60,40);
-
-$graph->title->Set("Example of contour plot");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-// For contour plots it is custom to use a box style ofr the axis
-$graph->legend->SetPos(0.05,0.5,'right','center');
-$graph->SetScale('intint');
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-$graph->xgrid->Show();
-$graph->ygrid->Show();
-
-
-// A simple contour plot with 12 isobar lines and flipped Y-coordinates
-$cp = new ContourPlot($data,12,true);
-
-// Display the legend
-$cp->ShowLegend();
-
-// Make the isobar lines slightly thicker
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contourex03.php b/#jpgraph/src/Examples/contourex03.php
deleted file mode 100644
index ea430812..00000000
--- a/#jpgraph/src/Examples/contourex03.php
+++ /dev/null
@@ -1,51 +0,0 @@
-SetMargin(40,140,60,40);
-
-// Enable antialias. Note with antiaaliasing only line weight=1 is supported.
-$graph->img->SetAntiAliasing();
-
-$graph->title->Set("Example of contour plot");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-// For contour plots it is custom to use a box style ofr the axis
-$graph->legend->SetPos(0.05,0.5,'right','center');
-$graph->SetScale('intint');
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-$graph->xgrid->Show();
-$graph->ygrid->Show();
-
-
-// A simple contour plot with 19 isobars and flipped vertical range
-$cp = new ContourPlot($data,10,true);
-
-// Display the legend
-$cp->ShowLegend();
-
-// Invert the legend to th lowest isobar is on top
-$cp->Invertlegend();
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contourex04.php b/#jpgraph/src/Examples/contourex04.php
deleted file mode 100644
index d37f13b5..00000000
--- a/#jpgraph/src/Examples/contourex04.php
+++ /dev/null
@@ -1,50 +0,0 @@
-SetMargin(40,140,60,40);
-
-$graph->title->Set("Example of interpolated contour plot");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->title->SetMargin(10);
-
-// For contour plots it is custom to use a box style ofr the axis
-$graph->legend->SetPos(0.05,0.5,'right','center');
-$graph->SetScale('intint');
-
-// Setup axis and grids
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-$graph->xgrid->SetLineStyle('dashed');
-$graph->xgrid->Show(true);
-$graph->ygrid->SetLineStyle('dashed');
-$graph->ygrid->Show(true);
-
-// A simple contour plot with 10 isobar lines and flipped Y-coordinates
-// Make the data smoother by interpolate the original matrice by a factor of two
-// which will make each grid cell half the original size
-$cp = new ContourPlot($data,10, 2);
-
-$cp->UseHighContrastColor(true);
-
-// Display the legend
-$cp->ShowLegend();
-
-// Make the isobar lines slightly thicker
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/contourex05.php b/#jpgraph/src/Examples/contourex05.php
deleted file mode 100644
index 4af9ca8b..00000000
--- a/#jpgraph/src/Examples/contourex05.php
+++ /dev/null
@@ -1,59 +0,0 @@
-SetMargin(40,120,60,50);
-
-$graph->title->Set("Contour plot, high contrast color");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->SetMargin(10);
-
-// For contour plots it is custom to use a box style ofr the axis
-$graph->SetScale('intint',0,56,0,56);
-
-// Setup axis and grids
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-$graph->xgrid->Show(true);
-$graph->ygrid->Show(true);
-
-// A simple contour plot with 10 isobar lines and flipped Y-coordinates
-// Make the data smoother by interpolate the original matrice by a factor of two
-// which will make each grid cell half the original size
-$cp = new ContourPlot($data,10, 3);
-
-$cp->UseHighContrastColor(true);
-
-// Display the legend
-$cp->ShowLegend();
-
-// Make the isobar lines slightly thicker
-$graph->Add($cp);
-
-// ... and send the graph back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/csim_in_html_ex1.php b/#jpgraph/src/Examples/csim_in_html_ex1.php
deleted file mode 100644
index 2c08e095..00000000
--- a/#jpgraph/src/Examples/csim_in_html_ex1.php
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
This is an example page with CSIM graphs with arbitrary HTML text
-
-Clicked on bar: <none>';
-}
-else {
- echo 'Clicked on bar: '.$_GET['clickedon'].'';
-}
-echo '';
-if( empty($_GET['pie_clickedon']) ) {
- echo 'Clicked on pie slice: <none>';
-}
-else {
- echo 'Clicked on pie slice: '.$_GET['pie_clickedon'].'';
-}
-echo '';
-?>
-
-
First we need to get hold of the image maps and include them in the HTML
- page.
-
For these graphs the maps are:
-
'.htmlentities($imgmap1).'
';
-?>
-
-and
-
-
'.htmlentities($imgmap2).'
';
-?>
-
- tags for Figure 1 & 2 and rebuild the URL arguments
-$imgtag1 = $graph->GetCSIMImgHTML($_mapname1,$_graphfilename1);
-$imgtag2 = $piegraph->GetCSIMImgHTML($_mapname2,$_graphfilename2);
-?>
-
The graphs are then displayed as shown in figure 1 & 2. With the following
- created <img> tags:
-
-
-
-
-
-Note: For the Pie the center is counted as the first slice.
-
-
-
-
-
-
- Figure 1. The included Bar CSIM graph.
-
-
-
-
- Figure 2. The included Pie CSIM graph.
-
-
-
-
-
-
diff --git a/#jpgraph/src/Examples/csim_in_html_graph_ex1.php b/#jpgraph/src/Examples/csim_in_html_graph_ex1.php
deleted file mode 100644
index b734c860..00000000
--- a/#jpgraph/src/Examples/csim_in_html_graph_ex1.php
+++ /dev/null
@@ -1,46 +0,0 @@
-SetScale('textlin');
-$graph->SetMargin(50,80,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-$n = count($datay) ; // Number of bars
-
-global $_wrapperfilename;
-
-// Create targets for the image maps. One for each column
-$targ = array(); $alt = array(); $wtarg = array();
-for( $i=0; $i < $n; ++$i ) {
- $urlarg = 'clickedon='.($i+1);
- $targ[] = $_wrapperfilename.'?'.$urlarg;
- $alt[] = 'val=%d';
- $wtarg[] = '';
-}
-$bplot->SetCSIMTargets($targ,$alt,$wtarg);
-
-$graph->Add($bplot);
-
-$graph->title->Set('Multiple Image maps');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->title->SetCSIMTarget('#45','Title for Bar','_blank');
-
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetCSIMTarget('#55','Y-axis title');
-$graph->yaxis->title->Set("Y-title");
-
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetCSIMTarget('#55','X-axis title');
-$graph->xaxis->title->Set("X-title");
-
-// Send back the image when we are called from within the tag
-$graph->StrokeCSIMImage();
-
-?>
diff --git a/#jpgraph/src/Examples/csim_in_html_graph_ex2.php b/#jpgraph/src/Examples/csim_in_html_graph_ex2.php
deleted file mode 100644
index 8c59c0c3..00000000
--- a/#jpgraph/src/Examples/csim_in_html_graph_ex2.php
+++ /dev/null
@@ -1,75 +0,0 @@
-SetFrame(false);
-
-// Setup title
-$piegraph->title->Set("CSIM Center Pie plot");
-$piegraph->title->SetFont(FF_ARIAL,FS_BOLD,18);
-$piegraph->title->SetMargin(8); // Add a little bit more margin from the top
-
-// Create the pie plot
-$p1 = new PiePlotC($data);
-
-// Set the radius of pie (as fraction of image size)
-$p1->SetSize(0.32);
-
-// Label font and color setup
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,11);
-$p1->value->SetColor('white');
-
-// Setup the title on the center circle
-$p1->midtitle->Set("Distribution\n2008 H1");
-$p1->midtitle->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-// Set color for mid circle
-$p1->SetMidColor('yellow');
-
-// Use percentage values in the legends values (This is also the default)
-$p1->SetLabelType(PIE_VALUE_PER);
-
-// The label array values may have printf() formatting in them. The argument to the
-// form,at string will be the value of the slice (either the percetage or absolute
-// depending on what was specified in the SetLabelType() above.
-$lbl = array("Jan\n%.1f%%","Feb\n%.1f%%","March\n%.1f%%",
- "Apr\n%.1f%%","May\n%.1f%%","Jun\n%.1f%%");
-$p1->SetLabels($lbl);
-
-// Add drop shadow to slices
-$p1->SetShadow();
-
-// Explode all slices 15 pixels
-$p1->ExplodeAll(15);
-
-// Setup the CSIM targets
-global $_wrapperfilename;
-$targ = array(); $alt = array(); $wtarg = array();
-for( $i=0; $i <= $n; ++$i ) {
- $urlarg = 'pie_clickedon='.($i+1);
- $targ[] = $_wrapperfilename.'?'.$urlarg;
- $alt[] = 'val=%d';
- $wtarg[] = '';
-}
-$p1->SetCSIMTargets($targ,$alt,$wtarg);
-$p1->SetMidCSIM($targ[0],$alt[0],$wtarg[0]);
-
-// Add plot to pie graph
-$piegraph->Add($p1);
-
-// Send back the image when we are called from within the tag
-$piegraph->StrokeCSIMImage();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/datamatrix_ex0.php b/#jpgraph/src/Examples/datamatrix_ex0.php
deleted file mode 100644
index 8de25222..00000000
--- a/#jpgraph/src/Examples/datamatrix_ex0.php
+++ /dev/null
@@ -1,18 +0,0 @@
-SetEncoding(ENCODING_ASCII);
-$backend = DatamatrixBackendFactory::Create($encoder);
-
-// We increase the module width to 3 pixels
-$backend->SetModuleWidth(3);
-
-try {
- $backend->Stroke($data);
-} catch (Exception $e) {
- echo 'Datamatrix error: '.$e->GetMessage()."\n";
- exit(1);
-}
-?>
diff --git a/#jpgraph/src/Examples/datamatrix_ex00.php b/#jpgraph/src/Examples/datamatrix_ex00.php
deleted file mode 100644
index 1aec89f3..00000000
--- a/#jpgraph/src/Examples/datamatrix_ex00.php
+++ /dev/null
@@ -1,9 +0,0 @@
-Stroke($data);
-?>
diff --git a/#jpgraph/src/Examples/datamatrix_ex1.php b/#jpgraph/src/Examples/datamatrix_ex1.php
deleted file mode 100644
index a2e73583..00000000
--- a/#jpgraph/src/Examples/datamatrix_ex1.php
+++ /dev/null
@@ -1,18 +0,0 @@
-SetModuleWidth(3);
-
-// Create the barcode from the given data string and write to output file
-try {
- $backend->Stroke($data);
-} catch (Exception $e) {
- $errstr = $e->GetMessage();
- echo "Datamatrix error message: $errstr\n";
-}
-
-?>
diff --git a/#jpgraph/src/Examples/datamatrix_ex2.php b/#jpgraph/src/Examples/datamatrix_ex2.php
deleted file mode 100644
index e7c9462b..00000000
--- a/#jpgraph/src/Examples/datamatrix_ex2.php
+++ /dev/null
@@ -1,21 +0,0 @@
-SetEncoding(ENCODING_BASE256);
-
-// Create the image backend (default)
-$backend = DatamatrixBackendFactory::Create($encoder);
-$backend->SetModuleWidth(3);
-
-try {
- $backend->Stroke($data);
-} catch (Exception $e) {
- $errstr = $e->GetMessage();
- echo "Datamatrix error message: $errstr\n";
-}
-
-?>
diff --git a/#jpgraph/src/Examples/datamatrix_ex3.php b/#jpgraph/src/Examples/datamatrix_ex3.php
deleted file mode 100644
index 6b6b8279..00000000
--- a/#jpgraph/src/Examples/datamatrix_ex3.php
+++ /dev/null
@@ -1,21 +0,0 @@
-SetEncoding(ENCODING_BASE256);
-
-// Create the image backend (default)
-$backend = DatamatrixBackendFactory::Create($encoder);
-$backend->SetModuleWidth(3);
-
-try {
- $backend->Stroke($data);
-} catch (Exception $e) {
- $errstr = $e->GetMessage();
- echo "Datamatrix error message: $errstr\n";
-}
-
-?>
diff --git a/#jpgraph/src/Examples/datamatrix_ex4.php b/#jpgraph/src/Examples/datamatrix_ex4.php
deleted file mode 100644
index 77b36674..00000000
--- a/#jpgraph/src/Examples/datamatrix_ex4.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetEncoding(ENCODING_TEXT);
-
-// Create the image backend (default)
-$backend = DatamatrixBackendFactory::Create($encoder);
-$backend->SetModuleWidth(3);
-
-// Adjust the Quiet zone
-$backend->SetQuietZone(10);
-
-// Create the barcode from the given data string and write to output file
-try {
- $backend->Stroke($data);
-} catch (Exception $e) {
- $errstr = $e->GetMessage();
- echo "Datamatrix error message: $errstr\n";
-}
-
-?>
diff --git a/#jpgraph/src/Examples/datamatrix_ex5.php b/#jpgraph/src/Examples/datamatrix_ex5.php
deleted file mode 100644
index 9242252e..00000000
--- a/#jpgraph/src/Examples/datamatrix_ex5.php
+++ /dev/null
@@ -1,30 +0,0 @@
-SetEncoding(ENCODING_TEXT);
-
-// Create the image backend (default)
-$backend = DatamatrixBackendFactory::Create($encoder);
-
-// By default the module width is 2 pixel so we increase it a bit
-$backend->SetModuleWidth(4);
-
-// Set Quiet zone
-$backend->SetQuietZone(10);
-
-// Set other than default colors (one, zero, quiet zone/background)
-$backend->SetColor('navy','white','lightgray');
-
-// Create the barcode from the given data string and write to output file
-try {
- $backend->Stroke($data);
-} catch (Exception $e) {
- $errstr = $e->GetMessage();
- echo "Datamatrix error message: $errstr\n";
-}
-
-?>
diff --git a/#jpgraph/src/Examples/datamatrix_ex6.php b/#jpgraph/src/Examples/datamatrix_ex6.php
deleted file mode 100644
index 918bc4b1..00000000
--- a/#jpgraph/src/Examples/datamatrix_ex6.php
+++ /dev/null
@@ -1,33 +0,0 @@
-SetEncoding(ENCODING_TEXT);
-
-// Create the image backend (default)
-$backend = DatamatrixBackendFactory::Create($encoder);
-$backend->SetModuleWidth(5);
-$backend->SetQuietZone(10);
-
-// Set other than default colors (one, zero, background)
-$backend->SetColor('navy','white');
-
-// Create the barcode from the given data string and write to output file
-$dir = dirname(__FILE__);
-$file = '"'.$dir.'/'.$outputfile.'"';
-try {
- $backend->Stroke($data,$outputfile);
- echo 'Barcode sucessfully written to file: '.$file;
-} catch (Exception $e) {
- $errstr = $e->GetMessage();
- $errcode = $e->GetCode();
- echo "Failed writing file: ".$file.' ';
- echo "Datamatrix error ($errcode). Message: $errstr\n";
-}
-
-?>
diff --git a/#jpgraph/src/Examples/datamatrix_ex7.php b/#jpgraph/src/Examples/datamatrix_ex7.php
deleted file mode 100644
index a27d42cf..00000000
--- a/#jpgraph/src/Examples/datamatrix_ex7.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetEncoding(ENCODING_BASE256);
-
-// Create the image backend (default)
-$backend = DatamatrixBackendFactory::Create($encoder, BACKEND_ASCII);
-$backend->SetModuleWidth(3);
-
-try {
- $ps_txt = $backend->Stroke($data);
- echo '
'.$ps_txt.'
';
-} catch (Exception $e) {
- $errstr = $e->GetMessage();
- echo "Datamatrix error message: $errstr\n";
-}
-
-?>
diff --git a/#jpgraph/src/Examples/dataset01.inc.php b/#jpgraph/src/Examples/dataset01.inc.php
deleted file mode 100644
index 6ac7f2b0..00000000
--- a/#jpgraph/src/Examples/dataset01.inc.php
+++ /dev/null
@@ -1,275 +0,0 @@
- 1.0885908919277, 1 =>
- 0.99034385297982, 2 => 0.97005467188578, 3 =>
- 0.99901201350824, 4 => 1.1263167971152, 5 =>
- 1.0582808133448, 6 => 1.0216740689064, 7 =>
- 0.96626236356644, 8 => 1.0125912828768, 9 =>
- 0.99047473992496, 10 => 0.99102472104561, 11 =>
- 0.98500781573283, 12 => 0.91933668914198, 13 =>
- 0.92234602792711, 14 => 0.88933863410054, 15 =>
- 0.94236150975178, 16 => 0.98924287679116, 17 =>
- 1.0342765545566, 18 => 1.0538510278089, 19 =>
- 0.93496076181191, 20 => 0.90944479677235, 21 =>
- 0.80831866316983, 22 => 0.81912434615535, 23 =>
- 0.83143770042109, 24 => 0.86972168159496, 25 =>
- 0.92645774571577, 26 => 0.81169120061422, 27 =>
- 0.84409853057606, 28 => 0.89065856249272, 29 =>
- 0.83551478929348, 30 => 0.87015680306726, 31 =>
- 0.76063327042172, 32 => 0.82720958380697, 33 =>
- 0.86565279505723, 34 => 0.77858966246836, 35 =>
- 0.81009606378237, 36 => 0.80485136798149, 37 =>
- 0.82641461943804, 38 => 0.87442020676513, 39 =>
- 0.89589150146825, 40 => 0.92082995956816, 41 =>
- 0.92614241931726, 42 => 0.96915564652581, 43 =>
- 1.003753706293, 44 => 0.97438809368023, 45 =>
- 1.011556766867, 46 => 1.0785692014115, 47 =>
- 1.0586915420364, 48 => 1.284210059027, 49 =>
- 1.3424512661794, 50 => 1.1743365450983, 51 =>
- 1.2387345559532, 52 => 1.2485728609648, 53 =>
- 1.2330096418558, 54 => 1.1857882621709, 55 =>
- 1.2344956522411, 56 => 1.2047675730648, 57 =>
- 1.292419000136, 58 => 1.3405480219013, 59 =>
- 1.3971752198648, 60 => 1.4359555309649, 61 =>
- 1.3243735045701, 62 => 1.2359389187087, 63 =>
- 1.2201320423161, 64 => 1.3602246705197, 65 =>
- 1.360886940568, 66 => 1.3493553211075, 67 =>
- 1.4401769929405, 68 => 1.3979767849951, 69 =>
- 1.4545882591647, 70 => 1.337801210539, 71 =>
- 1.3793601365977, 72 => 1.4586769476223, 73 =>
- 1.5230946076475, 74 => 1.4124735946125, 75 =>
- 1.4030318592551, 76 => 1.349158816711, 77 =>
- 1.3994840622105, 78 => 1.4239672612346, 79 =>
- 1.40812256221, 80 => 1.4583856197192, 81 =>
- 1.4613314581567, 82 => 1.6756755916668, 83 =>
- 1.8580313939158, 84 => 1.8342360959805, 85 =>
- 1.9216082598086, 86 => 1.9478846253628, 87 =>
- 2.0244872112436, 88 => 1.9560660777181, 89 =>
- 1.8415152640121, 90 => 1.8471764273372, 91 =>
- 1.8889886695023, 92 => 1.8195007209252, 93 =>
- 1.8960270595999, 94 => 1.8644490575386, 95 =>
- 1.971196340772, 96 => 2.015583152659, 97 =>
- 1.9959882430428, 98 => 2.1063668082622, 99 =>
- 2.1719175769191, 100 => 2.1875938345039, 101 =>
- 2.1587594039981, 102 => 2.1278241823627, 103 =>
- 2.298793912594, 104 => 2.3723774302753, 105 =>
- 2.4413392788904, 106 => 2.4834594954125, 107 =>
- 2.5164271989421, 108 => 2.48274719503, 109 =>
- 2.4492997581034, 110 => 2.1412357263019, 111 =>
- 2.0314268112566, 112 => 1.9596098764628, 113 =>
- 2.0250983127109, 114 => 1.924959829851, 115 =>
- 1.9603612943993, 116 => 2.0540576271866, 117 =>
- 2.0568349960689, 118 => 2.0811524692325, 119 =>
- 2.0581964759165, 120 => 2.020162840272, 121 =>
- 2.0626517638667, 122 => 1.9286563823225, 123 =>
- 2.0127912437563, 124 => 1.9491858277931, 125 =>
- 1.8692310150316, 126 => 1.6993275416762, 127 =>
- 1.5849680675709, 128 => 1.5422481968304, 129 =>
- 1.603188853916, 130 => 1.6449504349551, 131 =>
- 1.6570332084417, 132 => 1.7563884552262, 133 =>
- 1.7346008663135, 134 => 1.741307942998, 135 =>
- 1.7415848536123, 136 => 1.7014366147405, 137 =>
- 1.6719646364256, 138 => 1.7092888030342, 139 =>
- 1.7371529028402, 140 => 1.7019154041991, 141 =>
- 1.7662473702497, 142 => 1.8480766044197, 143 =>
- 1.8355114169662, 144 => 1.7819817315586, 145 =>
- 1.7148079481036, 146 => 1.6241989833489, 147 =>
- 1.4624626548138, 148 => 1.5040542012939, 149 =>
- 1.442295346913, 150 => 1.4187087000604, 151 =>
- 1.4225097958511, 152 => 1.5001324671865, 153 =>
- 1.4584802723727, 154 => 1.5342572961469, 155 =>
- 1.514133174734, 156 => 1.5443934302345, 157 =>
- 1.5476883863698, 158 => 1.6080128685721, 159 =>
- 1.5816649899396, 160 => 1.5310436755918, 161 =>
- 1.518280754595, 162 => 1.5216184249044, 163 =>
- 1.4393414811719, 164 => 1.409379582707, 165 =>
- 1.436861898056, 166 => 1.4739894373751, 167 =>
- 1.4512785421546, 168 => 1.496057581316, 169 =>
- 1.3817455776456, 170 => 1.2990312802211, 171 =>
- 1.3073949130374, 172 => 1.2473214566896, 173 =>
- 1.1105915111374, 174 => 1.0420360580822, 175 =>
- 1.1744654786356, 176 => 1.0602876800127, 177 =>
- 1.074408841208, 178 => 1.18387615056, 179 =>
- 1.1890999077101, 180 => 1.0549293038746, 181 =>
- 1.0570601708416, 182 => 1.0800216692849, 183 =>
- 0.96274117702549, 184 => 0.9501673977047, 185 =>
- 0.97710108451711, 186 => 0.89886322996001, 187 =>
- 0.9239453369566, 188 => 0.96299807255386, 189 =>
- 1.0105532418267, 190 => 1.0164009465948, 191 =>
- 1.0413107606824, 192 => 1.0475248122459, 193 =>
- 1.0266007451985, 194 => 1.0159556206533, 195 =>
- 1.0943852922517, 196 => 1.0750418553654, 197 =>
- 0.97774129938915, 198 => 0.98590717162284, 199 =>
- 0.87713795242119, 200 => 0.90770624057599, 201 =>
- 0.87557547650302, 202 => 0.95754187545856, 203 =>
- 1.0111465867283, 204 => 0.93224663470275, 205 =>
- 0.93886113881632, 206 => 0.94128877256653, 207 =>
- 0.9559086414866, 208 => 0.97782683000598, 209 =>
- 1.0648991708916, 210 => 1.1759619281479, 211 =>
- 1.1323001889786, 212 => 1.2173222321276, 213 =>
- 1.192219780365, 214 => 1.1507367671992, 215 =>
- 1.0062415877475, 216 => 1.0017043563084, 217 =>
- 0.94468309902865, 218 => 0.99384124056529, 219 =>
- 1.0514822705943, 220 => 1.0451723914426, 221 =>
- 1.0776122119814, 222 => 1.2013601009631, 223 =>
- 1.1765086398423, 224 => 1.2387735028784, 225 =>
- 1.2441365026242, 226 => 1.2694500268723, 227 =>
- 1.2789962941485, 228 => 1.2442094256309, 229 =>
- 1.2352688438234, 230 => 1.2571277155372, 231 =>
- 1.3291795377077, 232 => 1.2703480599183, 233 =>
- 1.30729508393, 234 => 1.3233030218068, 235 =>
- 1.2861232143244, 236 => 1.3168684998023, 237 =>
- 1.2499001566772, 238 => 1.2622769692485, 239 =>
- 1.2160789893735, 240 => 1.2288877111321, 241 =>
- 1.222967255453, 242 => 1.2998243638567, 243 =>
- 1.3443008723449, 244 => 1.339680674028, 245 =>
- 1.3779965791538, 246 => 1.3560080691721, 247 =>
- 1.3470544172094, 248 => 1.3166882067851, 249 =>
- 1.4452459865932, 250 => 1.4514278120119, 251 =>
- 1.413690283372, 252 => 1.4178934332405, 253 =>
- 1.4237414657565, 254 => 1.3777636409301, 255 =>
- 1.4041849448389, 256 => 1.4049533546771, 257 =>
- 1.4277375831259, 258 => 1.4224090113077, 259 =>
- 1.4647907974628, 260 => 1.4243190632657, 261 =>
- 1.4286580133998, 262 => 1.4348828641501, 263 =>
- 1.415409243977, 264 => 1.4476028555859, 265 =>
- 1.4538821661641, 266 => 1.4883184435336, 267 =>
- 1.4205032194634, 268 => 1.3856543933372, 269 =>
- 1.2716906168086, 270 => 1.3462117624752, 271 =>
- 1.3003015423298, 272 => 1.2148491725878, 273 =>
- 1.2605381058318, 274 => 1.2690047369619, 275 =>
- 1.3327723638582, 276 => 1.3118643588249, 277 =>
- 1.293007944258, 278 => 1.2548761810876, 279 =>
- 1.3335015938603, 280 => 1.3152744239077, 281 =>
- 1.2564376463182, 282 => 1.2478417859372, 283 =>
- 1.2518821298414, 284 => 1.2036453589032, 285 =>
- 1.1798564480155, 286 => 1.2062515260098, 287 =>
- 1.2129817801455, 288 => 1.1405762096618, 289 =>
- 1.0161049810033, 290 => 1.0030124197677, 291 =>
- 1.0111565082559, 292 => 1.0084286839061, 293 =>
- 0.95068297130577, 294 => 1.0450005357207, 295 =>
- 1.211596899292, 296 => 1.3762615912002, 297 =>
- 1.530127116787, 298 => 1.5167370832585, 299 =>
- 1.6259521507076, 300 => 1.6518467383405, 301 =>
- 1.7713043850286, 302 => 1.6396708687084, 303 =>
- 1.6116177484122, 304 => 1.5225729470695, 305 =>
- 1.6101471149808);
-
-
-$xdata = array(
-
- 0 => 444348000, 1 => 446853600, 2 =>
- 449532000, 3 => 452124000, 4 => 454802400, 5 =>
- 457394400, 6 => 460072800, 7 => 462751200, 8 =>
- 465343200, 9 => 468021600, 10 => 470613600, 11 =>
- 473292000, 12 => 475970400, 13 => 478389600, 14 =>
- 481068000, 15 => 483660000, 16 => 486338400, 17 =>
- 488930400, 18 => 491608800, 19 => 494287200, 20 =>
- 496879200, 21 => 499557600, 22 => 502149600, 23 =>
- 504828000, 24 => 507506400, 25 => 509925600, 26 =>
- 512604000, 27 => 515196000, 28 => 517874400, 29 =>
- 520466400, 30 => 523144800, 31 => 525823200, 32 =>
- 528415200, 33 => 531093600, 34 => 533685600, 35 =>
- 536364000, 36 => 539042400, 37 => 541461600, 38 =>
- 544140000, 39 => 546732000, 40 => 549410400, 41 =>
- 552002400, 42 => 554680800, 43 => 557359200, 44 =>
- 559951200, 45 => 562629600, 46 => 565221600, 47 =>
- 567900000, 48 => 570578400, 49 => 573084000, 50 =>
- 575762400, 51 => 578354400, 52 => 581032800, 53 =>
- 583624800, 54 => 586303200, 55 => 588981600, 56 =>
- 591573600, 57 => 594252000, 58 => 596844000, 59 =>
- 599522400, 60 => 602200800, 61 => 604620000, 62 =>
- 607298400, 63 => 609890400, 64 => 612568800, 65 =>
- 615160800, 66 => 617839200, 67 => 620517600, 68 =>
- 623109600, 69 => 625788000, 70 => 628380000, 71 =>
- 631058400, 72 => 633736800, 73 => 636156000, 74 =>
- 638834400, 75 => 641426400, 76 => 644104800, 77 =>
- 646696800, 78 => 649375200, 79 => 652053600, 80 =>
- 654645600, 81 => 657324000, 82 => 659916000, 83 =>
- 662594400, 84 => 665272800, 85 => 667692000, 86 =>
- 670370400, 87 => 672962400, 88 => 675640800, 89 =>
- 678232800, 90 => 680911200, 91 => 683589600, 92 =>
- 686181600, 93 => 688860000, 94 => 691452000, 95 =>
- 694130400, 96 => 696808800, 97 => 699314400, 98 =>
- 701992800, 99 => 704584800, 100 => 707263200, 101 =>
- 709855200, 102 => 712533600, 103 => 715212000, 104 =>
- 717804000, 105 => 720482400, 106 => 723074400, 107 =>
- 725752800, 108 => 728431200, 109 => 730850400, 110 =>
- 733528800, 111 => 736120800, 112 => 738799200, 113 =>
- 741391200, 114 => 744069600, 115 => 746748000, 116 =>
- 749340000, 117 => 752018400, 118 => 754610400, 119 =>
- 757288800, 120 => 759967200, 121 => 762386400, 122 =>
- 765064800, 123 => 767656800, 124 => 770335200, 125 =>
- 772927200, 126 => 775605600, 127 => 778284000, 128 =>
- 780876000, 129 => 783554400, 130 => 786146400, 131 =>
- 788824800, 132 => 791503200, 133 => 793922400, 134 =>
- 796600800, 135 => 799192800, 136 => 801871200, 137 =>
- 804463200, 138 => 807141600, 139 => 809820000, 140 =>
- 812412000, 141 => 815090400, 142 => 817682400, 143 =>
- 820360800, 144 => 823039200, 145 => 825544800, 146 =>
- 828223200, 147 => 830815200, 148 => 833493600, 149 =>
- 836085600, 150 => 838764000, 151 => 841442400, 152 =>
- 844034400, 153 => 846712800, 154 => 849304800, 155 =>
- 851983200, 156 => 854661600, 157 => 857080800, 158 =>
- 859759200, 159 => 862351200, 160 => 865029600, 161 =>
- 867621600, 162 => 870300000, 163 => 872978400, 164 =>
- 875570400, 165 => 878248800, 166 => 880840800, 167 =>
- 883519200, 168 => 886197600, 169 => 888616800, 170 =>
- 891295200, 171 => 893887200, 172 => 896565600, 173 =>
- 899157600, 174 => 901836000, 175 => 904514400, 176 =>
- 907106400, 177 => 909784800, 178 => 912376800, 179 =>
- 915055200, 180 => 917733600, 181 => 920152800, 182 =>
- 922831200, 183 => 925423200, 184 => 928101600, 185 =>
- 930693600, 186 => 933372000, 187 => 936050400, 188 =>
- 938642400, 189 => 941320800, 190 => 943912800, 191 =>
- 946591200, 192 => 949269600, 193 => 951775200, 194 =>
- 954453600, 195 => 957045600, 196 => 959724000, 197 =>
- 962316000, 198 => 964994400, 199 => 967672800, 200 =>
- 970264800, 201 => 972943200, 202 => 975535200, 203 =>
- 978213600, 204 => 980892000, 205 => 983311200, 206 =>
- 985989600, 207 => 988581600, 208 => 991260000, 209 =>
- 993852000, 210 => 996530400, 211 => 999208800, 212 =>
- 1001800800, 213 => 1004479200, 214 => 1007071200,
- 215 => 1009749600, 216 => 1012428000, 217 =>
- 1014847200, 218 => 1017525600, 219 => 1020117600,
- 220 => 1022796000, 221 => 1025388000, 222 =>
- 1028066400, 223 => 1030744800, 224 => 1033336800,
- 225 => 1036015200, 226 => 1038607200, 227 =>
- 1041285600, 228 => 1043964000, 229 => 1046383200,
- 230 => 1049061600, 231 => 1051653600, 232 =>
- 1054332000, 233 => 1056924000, 234 => 1059602400,
- 235 => 1062280800, 236 => 1064872800, 237 =>
- 1067551200, 238 => 1070143200, 239 => 1072821600,
- 240 => 1075500000, 241 => 1078005600, 242 =>
- 1080684000, 243 => 1083276000, 244 => 1085954400,
- 245 => 1088546400, 246 => 1091224800, 247 =>
- 1093903200, 248 => 1096495200, 249 => 1099173600,
- 250 => 1101765600, 251 => 1104444000, 252 =>
- 1107122400, 253 => 1109541600, 254 => 1112220000,
- 255 => 1114812000, 256 => 1117490400, 257 =>
- 1120082400, 258 => 1122760800, 259 => 1125439200,
- 260 => 1128031200, 261 => 1130709600, 262 =>
- 1133301600, 263 => 1135980000, 264 => 1138658400,
- 265 => 1141077600, 266 => 1143756000, 267 =>
- 1146348000, 268 => 1149026400, 269 => 1151618400,
- 270 => 1154296800, 271 => 1156975200, 272 =>
- 1159567200, 273 => 1162245600, 274 => 1164837600,
- 275 => 1167516000, 276 => 1170194400, 277 =>
- 1172613600, 278 => 1175292000, 279 => 1177884000,
- 280 => 1180562400, 281 => 1183154400, 282 =>
- 1185832800, 283 => 1188511200, 284 => 1191103200,
- 285 => 1193781600, 286 => 1196373600, 287 =>
- 1199052000, 288 => 1201730400, 289 => 1204236000,
- 290 => 1206914400, 291 => 1209506400, 292 =>
- 1212184800, 293 => 1214776800, 294 => 1217455200,
- 295 => 1220133600, 296 => 1222725600, 297 =>
- 1225404000, 298 => 1227996000, 299 => 1230674400,
- 300 => 1233352800, 301 => 1235772000, 302 =>
- 1238450400, 303 => 1241042400, 304 => 1243720800,
- 305 => 1246312800,
- );
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/dateaxisex1.php b/#jpgraph/src/Examples/dateaxisex1.php
deleted file mode 100644
index 58e4348f..00000000
--- a/#jpgraph/src/Examples/dateaxisex1.php
+++ /dev/null
@@ -1,55 +0,0 @@
-SetMargin(40,40,30,70);
-$graph->title->Set('Date: '.date('Y-m-d',$now));
-$graph->SetAlphaBlending();
-
-// Setup a manual x-scale (We leave the sentinels for the
-// Y-axis at 0 which will then autoscale the Y-axis.)
-// We could also use autoscaling for the x-axis but then it
-// probably will start a little bit earlier than the first value
-// to make the first value an even number as it sees the timestamp
-// as an normal integer value.
-$graph->SetScale("intlin",0,200,$now,$datax[$n-1]);
-
-// Setup the x-axis with a format callback to convert the timestamp
-// to a user readable time
-$graph->xaxis->SetLabelFormatCallback('TimeCallback');
-$graph->xaxis->SetLabelAngle(90);
-
-// Create the line
-$p1 = new LinePlot($datay,$datax);
-$p1->SetColor("blue");
-
-// Set the fill color partly transparent
-$p1->SetFillColor("blue@0.4");
-
-// Add lineplot to the graph
-$graph->Add($p1);
-
-// Output line
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/dateaxisex2.php b/#jpgraph/src/Examples/dateaxisex2.php
deleted file mode 100644
index c0a306c1..00000000
--- a/#jpgraph/src/Examples/dateaxisex2.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetMargin(40,40,30,130);
-
-// Fix the Y-scale to go between [0,100] and use date for the x-axis
-$graph->SetScale('datlin',0,100);
-$graph->title->Set("Example on Date scale");
-
-// Set the angle for the labels to 90 degrees
-$graph->xaxis->SetLabelAngle(90);
-
-$line = new LinePlot($data,$xdata);
-$line->SetLegend('Year 2005');
-$line->SetFillColor('lightblue@0.5');
-$graph->Add($line);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/dateaxisex3.php b/#jpgraph/src/Examples/dateaxisex3.php
deleted file mode 100644
index 02db7cc5..00000000
--- a/#jpgraph/src/Examples/dateaxisex3.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetMargin(40,40,30,130);
-
-// Fix the Y-scale to go between [0,100] and use date for the x-axis
-$graph->SetScale('datlin',0,100);
-$graph->title->Set("Example on Date scale");
-
-// Set the angle for the labels to 90 degrees
-$graph->xaxis->SetLabelAngle(90);
-
-// It is possible to adjust the density for the X-axis as well
-// The following call makes the dates a little more sparse
-// $graph->SetTickDensity(TICKD_NORMAL,TICKD_SPARSE);
-
-// The automatic format string for dates can be overridden
-// $graph->xaxis->scale->SetDateFormat('h:i');
-
-// Adjust the start/end to a specific alignment
-$graph->xaxis->scale->SetTimeAlign(MINADJ_15);
-
-$line = new LinePlot($data,$xdata);
-$line->SetLegend('Year 2005');
-$line->SetFillColor('lightblue@0.5');
-$graph->Add($line);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/dateaxisex4.php b/#jpgraph/src/Examples/dateaxisex4.php
deleted file mode 100644
index dab6cd6f..00000000
--- a/#jpgraph/src/Examples/dateaxisex4.php
+++ /dev/null
@@ -1,44 +0,0 @@
-SetMargin(40,40,30,130);
-
-// Fix the Y-scale to go between [0,100] and use date for the x-axis
-$graph->SetScale('datlin',0,100);
-$graph->title->Set("Example on Date scale");
-
-// Set the angle for the labels to 90 degrees
-$graph->xaxis->SetLabelAngle(90);
-
-// The automatic format string for dates can be overridden
-$graph->xaxis->scale->SetDateFormat('H:i');
-
-// Adjust the start/end to a specific alignment
-$graph->xaxis->scale->SetTimeAlign(MINADJ_10);
-
-$line = new LinePlot($data,$xdata);
-$line->SetLegend('Year 2005');
-$line->SetFillColor('lightblue@0.5');
-$graph->Add($line);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/datescaleticksex01.php b/#jpgraph/src/Examples/datescaleticksex01.php
deleted file mode 100644
index 5bdcbe54..00000000
--- a/#jpgraph/src/Examples/datescaleticksex01.php
+++ /dev/null
@@ -1,63 +0,0 @@
-SetMargin(80,30,50,40);
-$graph->SetMarginColor('white');
-$graph->SetScale('dateint');
-$graph->title->Set('Current Bids');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set('(Updated every 5 minutes)');
-$graph->subtitle->SetFont(FF_ARIAL,FS_ITALIC,10);
-
-// Enable antialias
-$graph->img->SetAntiAliasing();
-
-// Setup the y-axis to show currency values
-$graph->yaxis->SetLabelFormatCallback('number_format');
-$graph->yaxis->SetLabelFormat('$%s');
-
-//Use hour:minute format for the labels
-$graph->xaxis->scale->SetDateFormat('H:i');
-
-// Force labels to only be displayed every 5 minutes
-$graph->xaxis->scale->ticks->Set(INTERVAL);
-
-// Adjust the start time for an "even" 5 minute, i.e. 5,10,15,20,25, ...
-$graph->xaxis->scale->SetTimeAlign(MINADJ_5);
-
-// Create the plots using the dummy data created at the beginning
-$line = array();
-for( $i=0; $i < $m; ++$i ) {
- $line[$i] = new LinePlot($bids[$i],$times);
- $line[$i]->mark->SetType(MARK_SQUARE);
-}
-$graph->Add($line);
-
-// Send the graph back to the client
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/dateutilex01.php b/#jpgraph/src/Examples/dateutilex01.php
deleted file mode 100644
index 75f0d331..00000000
--- a/#jpgraph/src/Examples/dateutilex01.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetScale('intlin',0,0,min($xdata),max($xdata));
-$graph->SetMargin(60,20,40,60);
-
-// Setup the titles
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->Set('Development since 1984');
-$graph->subtitle->SetFont(FF_ARIAL,FS_ITALIC,10);
-$graph->subtitle->Set('(Example using DateScaleUtils class)');
-
-// Setup the labels to be correctly format on the X-axis
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->xaxis->SetLabelAngle(30);
-
-// The second paramter set to 'true' will make the library interpret the
-// format string as a date format. We use a Month + Year format
-$graph->xaxis->SetLabelFormatString('M, Y',true);
-
-// Get manual tick every second year
-list($tickPos,$minTickPos) = $dateUtils->getTicks($xdata,DSUTILS_YEAR2);
-$graph->xaxis->SetTickPositions($tickPos,$minTickPos);
-
-// First add an area plot
-$lp1 = new LinePlot($ydata,$xdata);
-$lp1->SetWeight(0);
-$lp1->SetFillColor('orange@0.85');
-$graph->Add($lp1);
-
-// And then add line. We use two plots in order to get a
-// more distinct border on the graph
-$lp2 = new LinePlot($ydata,$xdata);
-$lp2->SetColor('orange');
-$graph->Add($lp2);
-
-// And send back to the client
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/dateutilex02.php b/#jpgraph/src/Examples/dateutilex02.php
deleted file mode 100644
index f95db471..00000000
--- a/#jpgraph/src/Examples/dateutilex02.php
+++ /dev/null
@@ -1,47 +0,0 @@
-SetScale('datlin');
-$graph->SetMargin(60,20,40,60);
-
-// Setup the titles
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->Set('Development since 1984');
-$graph->subtitle->SetFont(FF_ARIAL,FS_ITALIC,10);
-$graph->subtitle->Set('(Example using the builtin date scale)');
-
-// Setup the labels to be correctly format on the X-axis
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->xaxis->SetLabelAngle(30);
-
-// The second paramter set to 'true' will make the library interpret the
-// format string as a date format. We use a Month + Year format
-// $graph->xaxis->SetLabelFormatString('M, Y',true);
-
-// First add an area plot
-$lp1 = new LinePlot($ydata,$xdata);
-$lp1->SetWeight(0);
-$lp1->SetFillColor('orange@0.85');
-$graph->Add($lp1);
-
-// And then add line. We use two plots in order to get a
-// more distinct border on the graph
-$lp2 = new LinePlot($ydata,$xdata);
-$lp2->SetColor('orange');
-$graph->Add($lp2);
-
-// And send back to the client
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/dm_ex6.png b/#jpgraph/src/Examples/dm_ex6.png
deleted file mode 100644
index b389990b..00000000
Binary files a/#jpgraph/src/Examples/dm_ex6.png and /dev/null differ
diff --git a/#jpgraph/src/Examples/dupyaxisex1.php b/#jpgraph/src/Examples/dupyaxisex1.php
deleted file mode 100644
index b4b63fe7..00000000
--- a/#jpgraph/src/Examples/dupyaxisex1.php
+++ /dev/null
@@ -1,31 +0,0 @@
-E(-M_PI,M_PI,25);
-
-$graph = new Graph(300,200);
-$graph->SetScale("linlin");
-$graph->SetMargin(50,50,20,30);
-$graph->SetFrame(false);
-$graph->SetBox(true,'black',2);
-$graph->SetMarginColor('white');
-$graph->SetColor('lightyellow');
-
-$graph->title->Set('Duplicating Y-axis');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->SetAxisStyle(AXSTYLE_YBOXIN);
-$graph->xgrid->Show();
-
-$lp1 = new LinePlot($ydata,$xdata);
-$lp1->SetColor("blue");
-$lp1->SetWeight(2);
-$graph->Add($lp1);
-
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/example0-0.php b/#jpgraph/src/Examples/example0-0.php
deleted file mode 100644
index d281824a..00000000
--- a/#jpgraph/src/Examples/example0-0.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetScale('intlin');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example0.php b/#jpgraph/src/Examples/example0.php
deleted file mode 100644
index 2667e9f8..00000000
--- a/#jpgraph/src/Examples/example0.php
+++ /dev/null
@@ -1,21 +0,0 @@
-SetScale('textlin');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor('blue');
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example1.1.php b/#jpgraph/src/Examples/example1.1.php
deleted file mode 100644
index e171e3ba..00000000
--- a/#jpgraph/src/Examples/example1.1.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(30,90,40,50);
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->title->Set("Example 1.1 same y-values");
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetLegend("Test 1");
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(5);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example1.2.php b/#jpgraph/src/Examples/example1.2.php
deleted file mode 100644
index bbac21f1..00000000
--- a/#jpgraph/src/Examples/example1.2.php
+++ /dev/null
@@ -1,29 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(30,90,40,50);
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->title->Set("Dashed lineplot");
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetLegend("Test 1");
-$lineplot->SetColor("blue");
-
-// Style can also be specified as SetStyle([1|2|3|4]) or
-// SetStyle("solid"|"dotted"|"dashed"|"lobgdashed")
-$lineplot->SetStyle("dashed");
-
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example1.php b/#jpgraph/src/Examples/example1.php
deleted file mode 100644
index 31437f2d..00000000
--- a/#jpgraph/src/Examples/example1.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetScale("textlin");
-$graph->img->SetMargin(50,90,40,50);
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->title->Set("Examples for graph");
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetLegend("Test 1");
-$lineplot->SetColor("blue");
-
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example10.php b/#jpgraph/src/Examples/example10.php
deleted file mode 100644
index 8b9d4c6e..00000000
--- a/#jpgraph/src/Examples/example10.php
+++ /dev/null
@@ -1,59 +0,0 @@
-img->SetMargin(40,110,20,40);
-$graph->SetScale("textlog");
-$graph->SetY2Scale("log");
-$graph->SetShadow();
-
-$graph->ygrid->Show(true,true);
-$graph->xgrid->Show(true,false);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot2=new LinePlot($y2data);
-
-$graph->yaxis->scale->ticks->SupressFirst();
-$graph->y2axis->scale->ticks->SupressFirst();
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->AddY2($lineplot2);
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-$graph->y2axis->SetColor("orange");
-
-$graph->title->Set("Example 10");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-$graph->yaxis->SetColor("blue");
-
-$lineplot->SetLegend("Plot 1");
-$lineplot2->SetLegend("Plot 2");
-
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetTextTickInterval(2);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example11.php b/#jpgraph/src/Examples/example11.php
deleted file mode 100644
index 898447a2..00000000
--- a/#jpgraph/src/Examples/example11.php
+++ /dev/null
@@ -1,50 +0,0 @@
-Push();
-
-// Create the graph. These two calls are always required
-$graph = new Graph(300,200);
-$graph->SetScale("textlin");
-
-$graph->SetMargin(40,20,20,60);
-
-$graph->title->Set("Timing a graph");
-$graph->footer->right->Set('Timer (ms): ');
-$graph->footer->right->SetFont(FF_COURIER,FS_ITALIC);
-$graph->footer->SetTimer($timer);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-$lineplot2=new LinePlot($ydata2);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->Add($lineplot2);
-
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-$graph->yaxis->SetColor("red");
-$graph->yaxis->SetWeight(2);
-$graph->SetShadow();
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example13.php b/#jpgraph/src/Examples/example13.php
deleted file mode 100644
index ae0eb952..00000000
--- a/#jpgraph/src/Examples/example13.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetScale("textlin");
-
-$graph->img->SetMargin(40,30,20,40);
-$graph->SetShadow();
-
-// Create the error plot
-$errplot=new ErrorPlot($errdatay);
-$errplot->SetColor("red");
-$errplot->SetWeight(2);
-
-// Add the plot to the graph
-$graph->Add($errplot);
-
-$graph->title->Set("Simple error plot");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$datax = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($datax);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example14.php b/#jpgraph/src/Examples/example14.php
deleted file mode 100644
index cc591cbf..00000000
--- a/#jpgraph/src/Examples/example14.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale("textlin");
-
-$graph->img->SetMargin(40,30,20,40);
-$graph->SetShadow();
-
-// Create the error plot
-$errplot=new ErrorPlot($errdatay);
-$errplot->SetColor("red");
-$errplot->SetWeight(2);
-$errplot->SetCenter();
-
-// Add the plot to the graph
-$graph->Add($errplot);
-
-$graph->title->Set("Simple error plot");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$datax = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($datax);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example15.php b/#jpgraph/src/Examples/example15.php
deleted file mode 100644
index 79ebb9ea..00000000
--- a/#jpgraph/src/Examples/example15.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale("textlin");
-
-$graph->img->SetMargin(40,30,20,40);
-$graph->SetShadow();
-
-// Create the linear plot
-$errplot=new ErrorLinePlot($errdatay);
-$errplot->SetColor("red");
-$errplot->SetWeight(2);
-$errplot->SetCenter();
-$errplot->line->SetWeight(2);
-$errplot->line->SetColor("blue");
-
-// Add the plot to the graph
-$graph->Add($errplot);
-
-$graph->title->Set("Linear error plot");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$datax = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($datax);
-
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example16.1.php b/#jpgraph/src/Examples/example16.1.php
deleted file mode 100644
index edbb010f..00000000
--- a/#jpgraph/src/Examples/example16.1.php
+++ /dev/null
@@ -1,44 +0,0 @@
-SetScale('textlin');
-
-$graph->img->SetMargin(40,130,20,40);
-$graph->SetShadow();
-
-// Create the linear error plot
-$l1plot=new LinePlot($l1datay);
-$l1plot->SetColor('red');
-$l1plot->SetWeight(2);
-$l1plot->SetLegend('Prediction');
-
-// Create the bar plot
-$l2plot = new LinePlot($l2datay);
-$l2plot->SetFillColor('orange');
-$l2plot->SetLegend('Result');
-
-// Add the plots to the graph
-$graph->Add($l2plot);
-$graph->Add($l1plot);
-
-$graph->title->Set('Mixing line and filled line');
-$graph->xaxis->title->Set('X-title');
-$graph->yaxis->title->Set('Y-title');
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-//$graph->xaxis->SetTickLabels($datax);
-//$graph->xaxis->SetTextTickInterval(2);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example16.2.php b/#jpgraph/src/Examples/example16.2.php
deleted file mode 100644
index 649a7a94..00000000
--- a/#jpgraph/src/Examples/example16.2.php
+++ /dev/null
@@ -1,46 +0,0 @@
-SetScale("textlin");
-
-$graph->img->SetMargin(40,130,20,40);
-$graph->SetShadow();
-
-// Create the linear error plot
-$l1plot=new LinePlot($l1datay);
-$l1plot->SetColor("red");
-$l1plot->SetWeight(2);
-$l1plot->SetLegend("Prediction");
-
-// Create the bar plot
-$bplot = new BarPlot($l2datay);
-$bplot->SetFillColor("orange");
-$bplot->SetLegend("Result");
-
-// Add the plots to t'he graph
-$graph->Add($l1plot);
-$graph->Add($bplot);
-
-
-$graph->title->Set("Adding a line plot to a bar graph v1");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-//$graph->xaxis->SetTickLabels($datax);
-//$graph->xaxis->SetTextTickInterval(2);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example16.3.php b/#jpgraph/src/Examples/example16.3.php
deleted file mode 100644
index f184fa2c..00000000
--- a/#jpgraph/src/Examples/example16.3.php
+++ /dev/null
@@ -1,45 +0,0 @@
-SetScale('textlin');
-
-$graph->img->SetMargin(40,130,20,40);
-$graph->SetShadow();
-
-// Create the linear error plot
-$l1plot=new LinePlot($l1datay);
-$l1plot->SetColor('red');
-$l1plot->SetWeight(2);
-$l1plot->SetLegend('Prediction');
-
-// Create the bar plot
-$bplot = new BarPlot($l2datay);
-$bplot->SetFillColor('orange');
-$bplot->SetLegend('Result');
-
-// Add the plots to t'he graph
-$graph->Add($bplot);
-$graph->Add($l1plot);
-
-$graph->title->Set('Adding a line plot to a bar graph v1');
-$graph->xaxis->title->Set('X-title');
-$graph->yaxis->title->Set('Y-title');
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->xaxis->SetTickLabels($datax);
-//$graph->xaxis->SetTextTickInterval(2);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example16.4.php b/#jpgraph/src/Examples/example16.4.php
deleted file mode 100644
index a23c2a54..00000000
--- a/#jpgraph/src/Examples/example16.4.php
+++ /dev/null
@@ -1,46 +0,0 @@
-SetScale('intlin');
-
-$graph->img->SetMargin(40,130,20,40);
-$graph->SetShadow();
-
-// Create the linear error plot
-$l1plot=new LinePlot($l1datay);
-$l1plot->SetColor('red');
-$l1plot->SetWeight(2);
-$l1plot->SetLegend('Prediction');
-
-// Create the bar plot
-$bplot = new BarPlot($l2datay);
-$bplot->SetFillColor('orange');
-$bplot->SetLegend('Result');
-
-// Add the plots to t'he graph
-$graph->Add($bplot);
-$graph->Add($l1plot);
-
-$graph->title->Set('Adding a line plot to a bar graph v3');
-$graph->xaxis->title->Set('X-title');
-$graph->yaxis->title->Set('Y-title');
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$datax = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($datax);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example16.5.php b/#jpgraph/src/Examples/example16.5.php
deleted file mode 100644
index bfad3ce8..00000000
--- a/#jpgraph/src/Examples/example16.5.php
+++ /dev/null
@@ -1,57 +0,0 @@
-img->SetMargin(40,70,20,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->SetColor(array(250,250,250));
-
-$graph->img->SetTransparent("white");
-
-$t1 = new Text("This is a text");
-$t1->SetPos(0.5,0.5);
-$t1->SetOrientation("h");
-$t1->SetFont(FF_FONT1,FS_BOLD);
-$t1->SetBox("white","black","gray");
-$t1->SetColor("black");
-$graph->AddText($t1);
-
-// Create the linear error plot
-$l1plot=new LinePlot($l1datay);
-$l1plot->SetColor("blue");
-$l1plot->SetWeight(2);
-$l1plot->SetLegend("Prediction");
-
-// Create the bar plot
-$l2plot = new BarPlot($l2datay);
-$l2plot->SetFillColor("orange");
-$l2plot->SetLegend("Result");
-
-// Add the plots to the graph
-$graph->Add($l1plot);
-$graph->Add($l2plot);
-
-
-$graph->title->Set("Example 16.3");
-$graph->xaxis->title->Set("Month");
-$graph->yaxis->title->Set("x10,000 US$");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->xaxis->SetTickLabels($datax);
-//$graph->xaxis->SetTextTickInterval(2);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example16.6.php b/#jpgraph/src/Examples/example16.6.php
deleted file mode 100644
index 8dac3128..00000000
--- a/#jpgraph/src/Examples/example16.6.php
+++ /dev/null
@@ -1,59 +0,0 @@
-GetStat();
-list( $xd, $yd ) = $lr->GetY(0,19);
-
-// Create the graph
-$graph = new Graph(300,250);
-$graph->SetScale('linlin');
-
-// Setup title
-$graph->title->Set("Linear regression");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-$graph->subtitle->Set('(stderr='.sprintf('%.2f',$stderr).', corr='.sprintf('%.2f',$corr).')');
-$graph->subtitle->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-// make sure that the X-axis is always at the
-// bottom at the plot and not just at Y=0 which is
-// the default position
-$graph->xaxis->SetPos('min');
-
-// Create the scatter plot with some nice colors
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-$sp1->mark->SetFillColor("red");
-$sp1->SetColor("blue");
-$sp1->SetWeight(3);
-$sp1->mark->SetWidth(4);
-
-// Create the regression line
-$lplot = new LinePlot($yd);
-$lplot->SetWeight(2);
-$lplot->SetColor('navy');
-
-// Add the pltos to the line
-$graph->Add($sp1);
-$graph->Add($lplot);
-
-// ... and stroke
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example16.php b/#jpgraph/src/Examples/example16.php
deleted file mode 100644
index 04c24272..00000000
--- a/#jpgraph/src/Examples/example16.php
+++ /dev/null
@@ -1,44 +0,0 @@
-SetScale("textlin");
-
-$graph->img->SetMargin(40,30,20,40);
-$graph->SetShadow();
-
-// Create the linear plot
-$errplot=new ErrorLinePlot($errdatay);
-$errplot->SetColor("red");
-$errplot->SetWeight(2);
-$errplot->SetCenter();
-$errplot->line->SetWeight(2);
-$errplot->line->SetColor("blue");
-
-// Setup the legends
-$errplot->SetLegend("Min/Max");
-$errplot->line->SetLegend("Average");
-
-// Add the plot to the graph
-$graph->Add($errplot);
-
-$graph->title->Set("Linear error plot");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$datax = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($datax);
-
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example17.php b/#jpgraph/src/Examples/example17.php
deleted file mode 100644
index a394ddf7..00000000
--- a/#jpgraph/src/Examples/example17.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetShadow();
-$graph->img->SetMargin(40,30,20,40);
-
-// Create the linear plots for each category
-$dplot[] = new LinePLot($datay1);
-$dplot[] = new LinePLot($datay2);
-$dplot[] = new LinePLot($datay3);
-
-$dplot[0]->SetFillColor("red");
-$dplot[1]->SetFillColor("blue");
-$dplot[2]->SetFillColor("green");
-
-// Create the accumulated graph
-$accplot = new AccLinePlot($dplot);
-
-// Add the plot to the graph
-$graph->Add($accplot);
-
-$graph->xaxis->SetTextTickInterval(2);
-$graph->title->Set("Example 17");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example18.php b/#jpgraph/src/Examples/example18.php
deleted file mode 100644
index 458219c8..00000000
--- a/#jpgraph/src/Examples/example18.php
+++ /dev/null
@@ -1,32 +0,0 @@
-SetScale("textlin");
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$graph->Add($bplot);
-
-// Setup the titles
-$graph->title->Set("A simple bar graph");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example19.1.php b/#jpgraph/src/Examples/example19.1.php
deleted file mode 100644
index feddf707..00000000
--- a/#jpgraph/src/Examples/example19.1.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetScale('intlin');
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Adjust fill color
-$bplot->SetFillColor('orange');
-$graph->Add($bplot);
-
-// Setup the titles
-$graph->title->Set('A basic bar graph');
-$graph->xaxis->title->Set('X-title');
-$graph->yaxis->title->Set('Y-title');
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example19.php b/#jpgraph/src/Examples/example19.php
deleted file mode 100644
index 13af5c01..00000000
--- a/#jpgraph/src/Examples/example19.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetScale('textlin');
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Adjust fill color
-$bplot->SetFillColor('orange');
-$graph->Add($bplot);
-
-// Setup the titles
-$graph->title->Set('A basic bar graph');
-$graph->xaxis->title->Set('X-title');
-$graph->yaxis->title->Set('Y-title');
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example2.1.php b/#jpgraph/src/Examples/example2.1.php
deleted file mode 100644
index 1114b1a0..00000000
--- a/#jpgraph/src/Examples/example2.1.php
+++ /dev/null
@@ -1,30 +0,0 @@
-SetScale("textlin");
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-$lineplot->value->Show();
-$lineplot->value->SetColor("red");
-$lineplot->value->SetFont(FF_FONT1,FS_BOLD);
-
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->img->SetMargin(40,20,20,40);
-$graph->title->Set("Example 2.1");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example2.5.php b/#jpgraph/src/Examples/example2.5.php
deleted file mode 100644
index a6e5535c..00000000
--- a/#jpgraph/src/Examples/example2.5.php
+++ /dev/null
@@ -1,26 +0,0 @@
-SetScale("textlin");
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->img->SetMargin(40,20,20,40);
-$graph->title->Set("Example 2.5");
-$graph->xaxis->title->Set("X-title");
-$graph->xaxis->SetPos("min");
-$graph->yaxis->title->Set("Y-title");
-
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example2.6.php b/#jpgraph/src/Examples/example2.6.php
deleted file mode 100644
index 215eb4a5..00000000
--- a/#jpgraph/src/Examples/example2.6.php
+++ /dev/null
@@ -1,27 +0,0 @@
-SetScale("textlin");
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetStepStyle();
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->img->SetMargin(40,20,20,40);
-$graph->title->Set("Example 2.6 (Line with stepstyle)");
-$graph->xaxis->title->Set("X-title");
-$graph->xaxis->SetPos("min");
-$graph->yaxis->title->Set("Y-title");
-
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example2.php b/#jpgraph/src/Examples/example2.php
deleted file mode 100644
index ef3731e7..00000000
--- a/#jpgraph/src/Examples/example2.php
+++ /dev/null
@@ -1,33 +0,0 @@
-SetScale('intlin');
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Calls per operator');
-$graph->subtitle->Set('(March 12, 2008)');
-$graph->xaxis->title->Set('Operator');
-$graph->yaxis->title->Set('# of calls');
-
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example20.1.php b/#jpgraph/src/Examples/example20.1.php
deleted file mode 100644
index 0b251449..00000000
--- a/#jpgraph/src/Examples/example20.1.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetScale("textlin");
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Adjust fill color
-$bplot->SetFillColor('orange');
-$bplot->value->Show();
-$graph->Add($bplot);
-
-// Setup the titles
-$graph->title->Set("Bar graph");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example20.2.php b/#jpgraph/src/Examples/example20.2.php
deleted file mode 100644
index b623219f..00000000
--- a/#jpgraph/src/Examples/example20.2.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale("textlin");
-$graph->yaxis->scale->SetGrace(20);
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Adjust fill color
-$bplot->SetFillColor('orange');
-$bplot->value->Show();
-$graph->Add($bplot);
-
-// Setup the titles
-$graph->title->Set("Bar graph with Y-scale grace");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example20.3.php b/#jpgraph/src/Examples/example20.3.php
deleted file mode 100644
index ac2df483..00000000
--- a/#jpgraph/src/Examples/example20.3.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale("textlin");
-$graph->yaxis->scale->SetGrace(20);
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Adjust fill color
-$bplot->SetFillColor('orange');
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_BOLD,10);
-$bplot->value->SetAngle(45);
-$bplot->value->SetFormat('%0.1f');
-$graph->Add($bplot);
-
-// Setup the titles
-$graph->title->Set("Bar graph with Y-scale grace");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example20.4.php b/#jpgraph/src/Examples/example20.4.php
deleted file mode 100644
index 6786efbf..00000000
--- a/#jpgraph/src/Examples/example20.4.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->yaxis->scale->SetGrace(20);
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Adjust fill color
-$bplot->SetFillColor('orange');
-$bplot->SetShadow();
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_BOLD,10);
-$bplot->value->SetAngle(45);
-$bplot->value->SetFormat('%0.1f');
-$graph->Add($bplot);
-
-// Setup the titles
-$graph->title->Set("Bar graph with drop shadow");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example20.5.php b/#jpgraph/src/Examples/example20.5.php
deleted file mode 100644
index a191e5a3..00000000
--- a/#jpgraph/src/Examples/example20.5.php
+++ /dev/null
@@ -1,47 +0,0 @@
-SetScale("textlin");
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Adjust fill color
-$bplot->SetFillColor('orange');
-
-// Setup values
-$bplot->value->Show();
-$bplot->value->SetFormat('%d');
-$bplot->value->SetFont(FF_FONT1,FS_BOLD);
-
-// Center the values in the bar
-$bplot->SetValuePos('center');
-
-// Make the bar a little bit wider
-$bplot->SetWidth(0.7);
-
-$graph->Add($bplot);
-
-// Setup the titles
-$graph->title->Set("Centered values for bars");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example20.php b/#jpgraph/src/Examples/example20.php
deleted file mode 100644
index 434860f1..00000000
--- a/#jpgraph/src/Examples/example20.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetScale("textlin");
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-
-// Adjust fill color
-$bplot->SetFillColor('orange');
-$bplot->SetWidth(1.0);
-$graph->Add($bplot);
-
-// Setup the titles
-$graph->title->Set("Bar graph");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example21.php b/#jpgraph/src/Examples/example21.php
deleted file mode 100644
index 81debb2d..00000000
--- a/#jpgraph/src/Examples/example21.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale("textlin");
-
-$graph->SetShadow();
-$graph->img->SetMargin(40,30,20,40);
-
-// Create the bar plots
-$b1plot = new BarPlot($data1y);
-$b1plot->SetFillColor("orange");
-$b2plot = new BarPlot($data2y);
-$b2plot->SetFillColor("blue");
-
-// Create the grouped bar plot
-$gbplot = new GroupBarPlot(array($b1plot,$b2plot));
-
-// ...and add it to the graPH
-$graph->Add($gbplot);
-
-$graph->title->Set("Example 21");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example22.php b/#jpgraph/src/Examples/example22.php
deleted file mode 100644
index f5223d08..00000000
--- a/#jpgraph/src/Examples/example22.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale("textlin");
-$graph->SetShadow();
-
-$graph->img->SetMargin(40,30,20,40);
-
-// Create the bar plots
-$b1plot = new BarPlot($data1y);
-$b1plot->SetFillColor("orange");
-$b2plot = new BarPlot($data2y);
-$b2plot->SetFillColor("blue");
-
-// Create the grouped bar plot
-$gbplot = new GroupBarPlot(array($b1plot,$b2plot));
-$gbplot->SetWidth(0.9);
-
-// ...and add it to the graPH
-$graph->Add($gbplot);
-
-$graph->title->Set("Adjusting the width");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example23.php b/#jpgraph/src/Examples/example23.php
deleted file mode 100644
index fcec9de0..00000000
--- a/#jpgraph/src/Examples/example23.php
+++ /dev/null
@@ -1,39 +0,0 @@
-SetScale("textlin");
-
-$graph->SetShadow();
-$graph->img->SetMargin(40,30,20,40);
-
-// Create the bar plots
-$b1plot = new BarPlot($data1y);
-$b1plot->SetFillColor("orange");
-$b2plot = new BarPlot($data2y);
-$b2plot->SetFillColor("blue");
-
-// Create the grouped bar plot
-$gbplot = new AccBarPlot(array($b1plot,$b2plot));
-
-// ...and add it to the graPH
-$graph->Add($gbplot);
-
-$graph->title->Set("Accumulated bar plots");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example24.php b/#jpgraph/src/Examples/example24.php
deleted file mode 100644
index 48d48da5..00000000
--- a/#jpgraph/src/Examples/example24.php
+++ /dev/null
@@ -1,46 +0,0 @@
-SetScale("textlin");
-
-$graph->SetShadow();
-$graph->img->SetMargin(40,30,20,40);
-
-$b1plot = new BarPlot($data1y);
-$b1plot->SetFillColor("orange");
-$b2plot = new BarPlot($data2y);
-$b2plot->SetFillColor("blue");
-$b3plot = new BarPlot($data3y);
-$b3plot->SetFillColor("green");
-$b4plot = new BarPlot($data4y);
-$b4plot->SetFillColor("brown");
-
-// Create the accumulated bar plots
-$ab1plot = new AccBarPlot(array($b1plot,$b2plot));
-$ab2plot = new AccBarPlot(array($b3plot,$b4plot));
-
-// Create the grouped bar plot
-$gbplot = new GroupBarPlot(array($ab1plot,$ab2plot));
-
-// ...and add it to the graph
-$graph->Add($gbplot);
-
-$graph->title->Set("Grouped Accumulated bar plots");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example25.1.php b/#jpgraph/src/Examples/example25.1.php
deleted file mode 100644
index a3afb03a..00000000
--- a/#jpgraph/src/Examples/example25.1.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale('textlin');
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,40,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$graph->Add($bplot);
-
-// Create and add a new text
-$txt=new Text('This is a text');
-$txt->SetPos(10,20);
-$txt->SetColor('darkred');
-$txt->SetFont(FF_FONT2,FS_BOLD);
-$txt->SetBox('yellow','navy','gray@0.5');
-$graph->AddText($txt);
-
-// Setup the titles
-$graph->title->Set("A simple bar graph");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example25.2.php b/#jpgraph/src/Examples/example25.2.php
deleted file mode 100644
index 53f8479e..00000000
--- a/#jpgraph/src/Examples/example25.2.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale('textlin');
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,20,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$graph->Add($bplot);
-
-// Create and add a new text
-$txt=new Text("This is a text\nwith many\nand even\nmore\nlines of text");
-$txt->SetPos(0.5,0.5,'center','center');
-$txt->SetFont(FF_FONT2,FS_BOLD);
-$txt->ParagraphAlign('center');
-$txt->SetBox('yellow','navy','gray');
-$txt->SetColor('red');
-$graph->AddText($txt);
-
-// Setup the titles
-$graph->title->Set("A simple bar graph");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example25.php b/#jpgraph/src/Examples/example25.php
deleted file mode 100644
index 35802aed..00000000
--- a/#jpgraph/src/Examples/example25.php
+++ /dev/null
@@ -1,39 +0,0 @@
-SetScale('textlin');
-
-// Add a drop shadow
-$graph->SetShadow();
-
-// Adjust the margin a bit to make more room for titles
-$graph->img->SetMargin(40,30,40,40);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$graph->Add($bplot);
-
-// Create and add a new text
-$txt=new Text('This is a text');
-$txt->SetPos(0,20);
-$txt->SetColor('darkred');
-$txt->SetFont(FF_FONT2,FS_BOLD);
-$graph->AddText($txt);
-
-// Setup the titles
-$graph->title->Set("A simple bar graph");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example26.1.php b/#jpgraph/src/Examples/example26.1.php
deleted file mode 100644
index 63a9d267..00000000
--- a/#jpgraph/src/Examples/example26.1.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetShadow();
-
-$graph->title->Set("A simple Pie plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot($data);
-$p1->SetLegends($gDateLocale->GetShortMonth());
-$p1->SetCenter(0.4);
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example26.php b/#jpgraph/src/Examples/example26.php
deleted file mode 100644
index 9cb57ebe..00000000
--- a/#jpgraph/src/Examples/example26.php
+++ /dev/null
@@ -1,18 +0,0 @@
-SetShadow();
-
-$graph->title->Set("A simple Pie plot");
-
-$p1 = new PiePlot($data);
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example27.1.php b/#jpgraph/src/Examples/example27.1.php
deleted file mode 100644
index 51d52e3a..00000000
--- a/#jpgraph/src/Examples/example27.1.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetShadow();
-
-$graph->title->Set("A simple Pie plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot3D($data);
-$p1->SetAngle(20);
-$p1->SetSize(0.5);
-$p1->SetCenter(0.45);
-$p1->SetLegends($gDateLocale->GetShortMonth());
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example27.2.php b/#jpgraph/src/Examples/example27.2.php
deleted file mode 100644
index aad23a38..00000000
--- a/#jpgraph/src/Examples/example27.2.php
+++ /dev/null
@@ -1,24 +0,0 @@
-SetShadow();
-
-$graph->title->Set("A simple Pie plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot($data);
-$p1->ExplodeSlice(1);
-$p1->SetCenter(0.45);
-$p1->SetLegends($gDateLocale->GetShortMonth());
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example27.3.php b/#jpgraph/src/Examples/example27.3.php
deleted file mode 100644
index fb2a56ec..00000000
--- a/#jpgraph/src/Examples/example27.3.php
+++ /dev/null
@@ -1,24 +0,0 @@
-SetShadow();
-
-$graph->title->Set("A simple 3D Pie plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot3D($data);
-$p1->ExplodeSlice(1);
-$p1->SetCenter(0.45);
-$p1->SetLegends($gDateLocale->GetShortMonth());
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example27.php b/#jpgraph/src/Examples/example27.php
deleted file mode 100644
index 3feee435..00000000
--- a/#jpgraph/src/Examples/example27.php
+++ /dev/null
@@ -1,24 +0,0 @@
-SetShadow();
-
-$graph->title->Set("A simple Pie plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot3D($data);
-$p1->SetSize(0.5);
-$p1->SetCenter(0.45);
-$p1->SetLegends($gDateLocale->GetShortMonth());
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example28.1.php b/#jpgraph/src/Examples/example28.1.php
deleted file mode 100644
index 7dce5d8a..00000000
--- a/#jpgraph/src/Examples/example28.1.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetShadow();
-
-$graph->title->Set("'earth' Theme");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot($data);
-$p1->SetTheme("earth");
-$p1->SetCenter(0.5,0.55);
-$p1->value->Show(false);
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example28.2.php b/#jpgraph/src/Examples/example28.2.php
deleted file mode 100644
index 905be8da..00000000
--- a/#jpgraph/src/Examples/example28.2.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetShadow();
-
-$graph->title->Set("'pastel' Theme");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot($data);
-$p1->SetTheme("pastel");
-$p1->SetCenter(0.5,0.55);
-$p1->value->Show(false);
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example28.3.php b/#jpgraph/src/Examples/example28.3.php
deleted file mode 100644
index bc4fdbd1..00000000
--- a/#jpgraph/src/Examples/example28.3.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetShadow();
-
-$graph->title->Set("'water' Theme");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot($data);
-$p1->SetTheme("water");
-$p1->SetCenter(0.5,0.55);
-$p1->value->Show(false);
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example28.php b/#jpgraph/src/Examples/example28.php
deleted file mode 100644
index 08d28bdc..00000000
--- a/#jpgraph/src/Examples/example28.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetShadow();
-
-$graph->title->Set("'sand' Theme");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot($data);
-$p1->SetTheme("sand");
-$p1->SetCenter(0.5,0.55);
-$p1->value->Show(false);
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/example3.0.1.php b/#jpgraph/src/Examples/example3.0.1.php
deleted file mode 100644
index dd10c9e9..00000000
--- a/#jpgraph/src/Examples/example3.0.1.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale('intlin');
-$graph->SetShadow();
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Calls per operator');
-$graph->subtitle->Set('(March 12, 2008)');
-$graph->xaxis->title->Set('Operator');
-$graph->yaxis->title->Set('# of calls');
-
-$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-
-$graph->yaxis->SetColor('blue');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor( 'blue' );
-$lineplot->SetWeight( 2 ); // Two pixel wide
-
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.0.2.php b/#jpgraph/src/Examples/example3.0.2.php
deleted file mode 100644
index 3c8b1e62..00000000
--- a/#jpgraph/src/Examples/example3.0.2.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale('intlin');
-$graph->SetShadow();
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Interpolated values');
-$graph->xaxis->title->Set('x-title');
-$graph->yaxis->title->Set('y-title');
-
-$graph->yaxis->title->SetFont( FF_ARIAL , FS_BOLD, 9 );
-$graph->xaxis->title->SetFont( FF_ARIAL , FS_BOLD, 9 );
-
-$graph->yaxis->SetColor('blue');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor( 'blue' );
-$lineplot->SetWeight( 2 ); // Two pixel wide
-
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.0.3.php b/#jpgraph/src/Examples/example3.0.3.php
deleted file mode 100644
index cc39f638..00000000
--- a/#jpgraph/src/Examples/example3.0.3.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetScale('intlin');
-$graph->SetShadow();
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('NULL values');
-$graph->xaxis->title->Set('x-title');
-$graph->yaxis->title->Set('y-title');
-
-$graph->yaxis->title->SetFont( FF_ARIAL , FS_BOLD, 9 );
-$graph->xaxis->title->SetFont( FF_ARIAL , FS_BOLD, 9 );
-
-$graph->yaxis->SetColor('blue');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor( 'blue' );
-$lineplot->SetWeight( 2 ); // Two pixel wide
-
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.1.1.php b/#jpgraph/src/Examples/example3.1.1.php
deleted file mode 100644
index 32e2cef8..00000000
--- a/#jpgraph/src/Examples/example3.1.1.php
+++ /dev/null
@@ -1,43 +0,0 @@
-SetScale('intlin');
-$graph->SetShadow();
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Calls per operator');
-$graph->subtitle->Set('(March 12, 2008)');
-$graph->xaxis->title->Set('Operator');
-$graph->yaxis->title->Set('# of calls');
-
-$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-
-$graph->yaxis->SetColor('blue');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor( 'blue' );
-$lineplot->SetWeight( 2 ); // Two pixel wide
-
-// Add an image mark scaled to 50%
-$lineplot->mark->SetType(MARK_IMG_DIAMOND,'red',0.5);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.1.php b/#jpgraph/src/Examples/example3.1.php
deleted file mode 100644
index 1c4e0adc..00000000
--- a/#jpgraph/src/Examples/example3.1.php
+++ /dev/null
@@ -1,43 +0,0 @@
-SetScale('intlin');
-$graph->SetShadow();
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Calls per operator');
-$graph->subtitle->Set('(March 12, 2008)');
-$graph->xaxis->title->Set('Operator');
-$graph->yaxis->title->Set('# of calls');
-
-$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-
-$graph->yaxis->SetColor('blue');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor( 'blue' );
-$lineplot->SetWeight( 2 ); // Two pixel wide
-$lineplot->mark->SetType(MARK_UTRIANGLE);
-$lineplot->mark->SetColor('blue');
-$lineplot->mark->SetFillColor('red');
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.2.1.php b/#jpgraph/src/Examples/example3.2.1.php
deleted file mode 100644
index c739ce80..00000000
--- a/#jpgraph/src/Examples/example3.2.1.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetScale("textlin");
-$graph->yaxis->scale->SetGrace(10,10);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->mark->SetType(MARK_CIRCLE);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->img->SetMargin(40,20,20,40);
-$graph->title->Set("Grace value, version 1");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-$graph->yaxis->SetWeight(2);
-$graph->SetShadow();
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.2.2.php b/#jpgraph/src/Examples/example3.2.2.php
deleted file mode 100644
index 03d22c8c..00000000
--- a/#jpgraph/src/Examples/example3.2.2.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale("textlin");
-$graph->yaxis->scale->SetGrace(10,10);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->mark->SetType(MARK_CIRCLE);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->img->SetMargin(40,20,20,40);
-$graph->title->Set("Grace value version 2");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->xaxis->SetPos('min');
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-$graph->yaxis->SetWeight(2);
-$graph->SetShadow();
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.2.php b/#jpgraph/src/Examples/example3.2.php
deleted file mode 100644
index f7c05c5c..00000000
--- a/#jpgraph/src/Examples/example3.2.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale("textlin");
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->mark->SetType(MARK_CIRCLE);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->img->SetMargin(40,20,20,40);
-$graph->title->Set("Example 3.2");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-$graph->yaxis->SetWeight(2);
-$graph->SetShadow();
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.3.php b/#jpgraph/src/Examples/example3.3.php
deleted file mode 100644
index c20cd98c..00000000
--- a/#jpgraph/src/Examples/example3.3.php
+++ /dev/null
@@ -1,45 +0,0 @@
-SetScale('intlin');
-$graph->SetShadow();
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Calls per operator');
-$graph->subtitle->Set('(March 12, 2008)');
-$graph->xaxis->title->Set('Operator');
-$graph->yaxis->title->Set('# of calls');
-
-$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-
-$graph->yaxis->SetColor('blue');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor( 'blue' );
-$lineplot->SetWeight( 2 ); // Two pixel wide
-$lineplot->mark->SetType(MARK_UTRIANGLE);
-$lineplot->mark->SetColor('blue');
-$lineplot->mark->SetFillColor('red');
-
-$lineplot->value->Show();
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.4.1.php b/#jpgraph/src/Examples/example3.4.1.php
deleted file mode 100644
index 77c0b24b..00000000
--- a/#jpgraph/src/Examples/example3.4.1.php
+++ /dev/null
@@ -1,81 +0,0 @@
- 1000, 'CM' => 900, 'D' => 500, 'CD' => 400,
- 'C' => 100, 'XC' => 90, 'L' => 50, 'XL' => 40,
- 'X' => 10, 'IX' => 9, 'V' => 5, 'IV' => 4, 'I' => 1);
-
- foreach ($lookup as $roman => $value)
- {
- // Determine the number of matches
- $matches = intval($n / $value);
-
- // Store that many characters
- $result .= str_repeat($roman, $matches);
-
- // Substract that from the number
- $n = $n % $value;
- }
-
- // The Roman numeral should be built, return it
- return $result;
-}
-
-function formatCallback($aVal) {
- return '('.numberToRoman($aVal).')';
-}
-
-
- // Some (random) data
-$ydata = array(11,3,8,12,5,1,9,13,5,7);
-
-// Size of the overall graph
-$width=350;
-$height=250;
-
-// Create the graph and set a scale.
-// These two calls are always required
-$graph = new Graph($width,$height);
-$graph->SetScale('intlin');
-$graph->SetShadow();
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Calls per operator');
-$graph->subtitle->Set('(March 12, 2008)');
-$graph->xaxis->title->Set('Operator');
-$graph->yaxis->title->Set('# of calls');
-
-$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-
-$graph->yaxis->SetColor('blue');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor( 'blue' );
-$lineplot->SetWeight( 2 ); // Two pixel wide
-$lineplot->mark->SetType(MARK_UTRIANGLE);
-$lineplot->mark->SetColor('blue');
-$lineplot->mark->SetFillColor('red');
-
-$lineplot->value->Show();
-$lineplot->value->SetFont(FF_ARIAL,FS_BOLD,10);
-$lineplot->value->SetColor('darkred');
-$lineplot->value->SetFormatCallback('formatCallback');
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.4.php b/#jpgraph/src/Examples/example3.4.php
deleted file mode 100644
index 0d223c17..00000000
--- a/#jpgraph/src/Examples/example3.4.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetScale('intlin');
-$graph->SetShadow();
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Calls per operator');
-$graph->subtitle->Set('(March 12, 2008)');
-$graph->xaxis->title->Set('Operator');
-$graph->yaxis->title->Set('# of calls');
-
-$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-
-$graph->yaxis->SetColor('blue');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor( 'blue' );
-$lineplot->SetWeight( 2 ); // Two pixel wide
-$lineplot->mark->SetType(MARK_UTRIANGLE);
-$lineplot->mark->SetColor('blue');
-$lineplot->mark->SetFillColor('red');
-
-$lineplot->value->Show();
-$lineplot->value->SetFont(FF_ARIAL,FS_BOLD,10);
-$lineplot->value->SetColor('darkred');
-$lineplot->value->SetFormat('(%d)');
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example3.php b/#jpgraph/src/Examples/example3.php
deleted file mode 100644
index 4c79c1d4..00000000
--- a/#jpgraph/src/Examples/example3.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale('intlin');
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Calls per operator');
-$graph->subtitle->Set('(March 12, 2008)');
-$graph->xaxis->title->Set('Operator');
-$graph->yaxis->title->Set('# of calls');
-
-$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetColor( 'blue' );
-$lineplot->SetWeight( 2 ); // Two pixel wide
-
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example4.php b/#jpgraph/src/Examples/example4.php
deleted file mode 100644
index 42549d88..00000000
--- a/#jpgraph/src/Examples/example4.php
+++ /dev/null
@@ -1,45 +0,0 @@
-SetScale('intlin');
-$graph->SetShadow();
-
-// Setup margin and titles
-$graph->SetMargin(40,20,20,40);
-$graph->title->Set('Calls per operator (June,July)');
-$graph->subtitle->Set('(March 12, 2008)');
-$graph->xaxis->title->Set('Operator');
-$graph->yaxis->title->Set('# of calls');
-
-$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
-
-// Create the first data series
-$lineplot=new LinePlot($ydata);
-$lineplot->SetWeight( 2 ); // Two pixel wide
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Create the second data series
-$lineplot2=new LinePlot($ydata2);
-$lineplot2->SetWeight( 2 ); // Two pixel wide
-
-// Add the second plot to the graph
-$graph->Add($lineplot2);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example5.1.php b/#jpgraph/src/Examples/example5.1.php
deleted file mode 100644
index 38345584..00000000
--- a/#jpgraph/src/Examples/example5.1.php
+++ /dev/null
@@ -1,47 +0,0 @@
-img->SetMargin(40,40,20,40);
-$graph->SetScale("textlin");
-$graph->SetY2Scale("lin");
-$graph->SetShadow();
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot2=new LinePlot($y2data);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->AddY2($lineplot2);
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-$graph->y2axis->SetColor("orange");
-
-$graph->title->Set("Example 5");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-$graph->yaxis->SetColor("blue");
-
-$lineplot->SetLegend("Plot 1");
-$lineplot2->SetLegend("Plot 2");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example5.php b/#jpgraph/src/Examples/example5.php
deleted file mode 100644
index d4b6838b..00000000
--- a/#jpgraph/src/Examples/example5.php
+++ /dev/null
@@ -1,44 +0,0 @@
-img->SetMargin(40,40,20,40);
-$graph->SetScale("textlin");
-$graph->SetY2Scale("lin");
-$graph->SetShadow();
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot2=new LinePlot($y2data);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->AddY2($lineplot2);
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-$graph->y2axis->SetColor("orange");
-
-$graph->title->Set("Example 5");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-$graph->yaxis->SetColor("blue");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example6.1.php b/#jpgraph/src/Examples/example6.1.php
deleted file mode 100644
index 50007592..00000000
--- a/#jpgraph/src/Examples/example6.1.php
+++ /dev/null
@@ -1,55 +0,0 @@
-SetScale("textlin");
-$graph->SetY2Scale("lin");
-$graph->SetShadow();
-
-// Adjust the margin
-$graph->img->SetMargin(40,40,20,70);
-
-// Create the two linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot2=new LinePlot($y2data);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->AddY2($lineplot2);
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-// Adjust the axis color
-$graph->y2axis->SetColor("orange");
-$graph->yaxis->SetColor("blue");
-
-$graph->title->Set("Example 6.1");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Set the colors for the plots
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-// Set the legends for the plots
-$lineplot->SetLegend("Plot 1");
-$lineplot2->SetLegend("Plot 2");
-
-// Adjust the legend position
-$graph->legend->SetLayout(LEGEND_HOR);
-$graph->legend->Pos(0.4,0.95,"center","bottom");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example6.2.php b/#jpgraph/src/Examples/example6.2.php
deleted file mode 100644
index 7d0a7556..00000000
--- a/#jpgraph/src/Examples/example6.2.php
+++ /dev/null
@@ -1,47 +0,0 @@
-SetScale("textlin");
-$graph->SetShadow();
-
-// Adjust the margin
-$graph->img->SetMargin(40,40,20,70);
-
-// Create the two linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetStepStyle();
-
-// Adjust the axis color
-$graph->yaxis->SetColor("blue");
-
-$graph->title->Set("Example 6.2");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Set the colors for the plots
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-// Set the legends for the plots
-$lineplot->SetLegend("Plot 1");
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Adjust the legend position
-$graph->legend->SetLayout(LEGEND_HOR);
-$graph->legend->Pos(0.4,0.95,"center","bottom");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example6.php b/#jpgraph/src/Examples/example6.php
deleted file mode 100644
index 6cdc6303..00000000
--- a/#jpgraph/src/Examples/example6.php
+++ /dev/null
@@ -1,54 +0,0 @@
-SetScale('textlin');
-$graph->SetY2Scale('lin');
-$graph->SetShadow();
-
-// Adjust the margin
-$graph->img->SetMargin(40,140,20,40);
-
-// Create the two linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot2=new LinePlot($y2data);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->AddY2($lineplot2);
-$lineplot2->SetColor('orange');
-$lineplot2->SetWeight(2);
-
-// Adjust the axis color
-$graph->y2axis->SetColor('orange');
-$graph->yaxis->SetColor('blue');
-
-$graph->title->Set('Example 6');
-$graph->xaxis->title->Set('X-title');
-$graph->yaxis->title->Set('Y-title');
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Set the colors for the plots
-$lineplot->SetColor('blue');
-$lineplot->SetWeight(2);
-$lineplot2->SetColor('orange');
-$lineplot2->SetWeight(2);
-
-// Set the legends for the plots
-$lineplot->SetLegend('Plot 1');
-$lineplot2->SetLegend('Plot 2');
-
-// Adjust the legend position
-$graph->legend->Pos(0.05,0.5,'right','center');
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example7.php b/#jpgraph/src/Examples/example7.php
deleted file mode 100644
index e8f75c4c..00000000
--- a/#jpgraph/src/Examples/example7.php
+++ /dev/null
@@ -1,44 +0,0 @@
-SetScale("textlin");
-$graph->SetY2Scale("log");
-$graph->SetShadow();
-$graph->img->SetMargin(40,110,20,40);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot2=new LinePlot($y2data);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->AddY2($lineplot2);
-$graph->yaxis->SetColor('blue');
-
-$graph->title->Set("Example 7");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-$lineplot2->SetWeight(2);
-
-$lineplot->SetLegend("Plot 1");
-$lineplot2->SetLegend("Plot 2");
-
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example8.1.php b/#jpgraph/src/Examples/example8.1.php
deleted file mode 100644
index 8cab7e42..00000000
--- a/#jpgraph/src/Examples/example8.1.php
+++ /dev/null
@@ -1,57 +0,0 @@
-SetScale("textlog");
-$graph->SetY2Scale("log");
-
-$graph->SetShadow();
-$graph->SetMargin(40,110,20,40);
-
-$graph->ygrid->Show(true,true);
-$graph->xgrid->Show(true,false);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-$lineplot2=new LinePlot($y2data);
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-$graph->yaxis->scale->ticks->SupressFirst();
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->AddY2($lineplot2);
-
-$graph->title->Set("Example 8");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-$graph->yaxis->SetColor("blue");
-$graph->y2axis->SetColor("orange");
-
-$lineplot->SetLegend("Plot 1");
-$lineplot2->SetLegend("Plot 2");
-
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example8.php b/#jpgraph/src/Examples/example8.php
deleted file mode 100644
index 773265bd..00000000
--- a/#jpgraph/src/Examples/example8.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetScale("textlog");
-$graph->SetShadow();
-$graph->img->SetMargin(40,110,20,40);
-
-// Show the gridlines
-$graph->ygrid->Show(true,true);
-$graph->xgrid->Show(true,false);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot2=new LinePlot($y2data);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->title->Set("Example 8");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-// Adjust the color of the Y axis
-$graph->yaxis->SetColor("blue");
-
-// Specifya a legend
-$lineplot->SetLegend("Plot 1");
-
-// Adjust the position of the grid box
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example9.1.php b/#jpgraph/src/Examples/example9.1.php
deleted file mode 100644
index addcb5f4..00000000
--- a/#jpgraph/src/Examples/example9.1.php
+++ /dev/null
@@ -1,50 +0,0 @@
-SetScale("textlog");
-
-$graph->img->SetMargin(40,110,20,40);
-$graph->SetShadow();
-
-$graph->ygrid->Show(true,true);
-$graph->xgrid->Show(true,false);
-
-// Specify the tick labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-$graph->xaxis->SetTextLabelInterval(2);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->title->Set("Examples 9");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$graph->yaxis->SetColor("blue");
-
-$lineplot->SetLegend("Plot 1");
-
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example9.2.php b/#jpgraph/src/Examples/example9.2.php
deleted file mode 100644
index c765981e..00000000
--- a/#jpgraph/src/Examples/example9.2.php
+++ /dev/null
@@ -1,52 +0,0 @@
-SetScale("textlog");
-
-$graph->img->SetMargin(40,110,20,50);
-$graph->SetShadow();
-
-$graph->ygrid->Show(true,true);
-$graph->xgrid->Show(true,false);
-
-// Specify the tick labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-//$graph->xaxis->SetTextLabelInterval(2);
-$graph->xaxis->SetLabelAngle(90);
-
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->title->Set("Examples 9");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$graph->yaxis->SetColor("blue");
-
-$lineplot->SetLegend("Plot 1");
-
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/example9.php b/#jpgraph/src/Examples/example9.php
deleted file mode 100644
index 03c54790..00000000
--- a/#jpgraph/src/Examples/example9.php
+++ /dev/null
@@ -1,49 +0,0 @@
-SetScale("textlog");
-
-$graph->img->SetMargin(40,110,20,40);
-$graph->SetShadow();
-
-$graph->ygrid->Show(true,true);
-$graph->xgrid->Show(true,false);
-
-// Specify the tick labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-$graph->title->Set("Examples 9");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$graph->yaxis->SetColor("blue");
-
-$lineplot->SetLegend("Plot 1");
-
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/exampleex9.php b/#jpgraph/src/Examples/exampleex9.php
deleted file mode 100644
index 9d87985f..00000000
--- a/#jpgraph/src/Examples/exampleex9.php
+++ /dev/null
@@ -1,63 +0,0 @@
-SetScale("textlog");
-
-$graph->img->SetMargin(40,110,20,40);
-
-$graph->SetY2Scale("log");
-$graph->SetShadow();
-
-$graph->ygrid->Show(true,true);
-$graph->xgrid->Show(true,false);
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot2=new LinePlot($y2data);
-
-$graph->yaxis->scale->ticks->SupressFirst();
-$graph->y2axis->scale->ticks->SupressFirst();
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->AddY2($lineplot2);
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-$graph->y2axis->SetColor("orange");
-
-$graph->title->Set("Examples 9");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-$graph->yaxis->SetColor("blue");
-
-$lineplot->SetLegend("Plot 1");
-$lineplot2->SetLegend("Plot 2");
-
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetTextTickInterval(2);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/fieldscatterex1.php b/#jpgraph/src/Examples/fieldscatterex1.php
deleted file mode 100644
index 94b47fb6..00000000
--- a/#jpgraph/src/Examples/fieldscatterex1.php
+++ /dev/null
@@ -1,92 +0,0 @@
- 1 ) $f=1;
- $red = floor((1-$f)*255);
- $blue = floor($f*255);
- $color = array($red,0,$blue);
- //echo "x=$x, y=$y, blue=$blue, red=$red ";
- return array($color,$size,$arrowsize);
-}
-
-// Create data for a simulated pseudo-magnetic radient field
-$datax = array();
-$datay = array();
-$angle = array();
-for($x=1; $x < 10; ++$x ) {
- for($y=10; $y<100; $y += 10) {
- $a = -1;
- if( $x==$polex && $y==$poley ) continue;
- if( $x==$polex ) {
- if( $y > $poley ) $a=90;
- else $a = 270;
- }
- if( $y==$poley ) {
- if( $x > $polex ) $a=0;
- else $a=180;
- }
- if( $a == -1 ) {
- $d1 = $y-$poley;
- $d2 = ($polex-$x)*20;
- if( $y < $poley ) $d2 *= -1;
- $h = sqrt($d1*$d1+$d2*$d2);
- $t = -$d2/$h;
- $ac = acos($t);
- if( $y < $poley ) $ac += M_PI;
- $a = $ac * 180/M_PI;
- }
- $datax[] = $x;
- $datay[] = $y;
- $angle[] = $a;
- }
-}
-
-// Setup the graph
-$graph = new Graph(300,200);
-$graph->SetScale("intlin",0,100,0,10);
-$graph->SetMarginColor('lightblue');
-
-
-// ..and titles
-$graph->title->Set("Field plot");
-
-// Setup the field plot
-$fp = new FieldPlot($datay,$datax,$angle);
-
-// Setup formatting callback
-$fp->SetCallback('FldCallback');
-
-// First size argument is length (in pixels of arrow)
-// Second size argument is roughly size of arrow. Arrow size is specified as
-// an integer in the range [0,9]
-$fp->arrow->SetSize(20,2);
-$fp->arrow->SetColor('navy');
-
-$graph->Add($fp);
-
-// .. and output
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/filledgridex1.php b/#jpgraph/src/Examples/filledgridex1.php
deleted file mode 100644
index 8e863792..00000000
--- a/#jpgraph/src/Examples/filledgridex1.php
+++ /dev/null
@@ -1,50 +0,0 @@
-SetMarginColor('white');
-$graph->SetScale("textlin");
-$graph->SetFrame(false);
-$graph->SetMargin(30,50,30,30);
-
-$graph->title->Set('Filled Y-grid');
-
-
-$graph->yaxis->HideZeroLabel();
-$graph->ygrid->SetFill(true,'#EFEFEF@0.5','#BBCCFF@0.5');
-$graph->xgrid->Show();
-
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-// Create the first line
-$p1 = new LinePlot($datay1);
-$p1->SetColor("navy");
-$p1->SetLegend('Line 1');
-$graph->Add($p1);
-
-// Create the second line
-$p2 = new LinePlot($datay2);
-$p2->SetColor("red");
-$p2->SetLegend('Line 2');
-$graph->Add($p2);
-
-// Create the third line
-$p3 = new LinePlot($datay3);
-$p3->SetColor("orange");
-$p3->SetLegend('Line 3');
-$graph->Add($p3);
-
-$graph->legend->SetShadow('gray@0.4',5);
-$graph->legend->SetPos(0.1,0.1,'right','top');
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/filledline01.php b/#jpgraph/src/Examples/filledline01.php
deleted file mode 100644
index 4140b299..00000000
--- a/#jpgraph/src/Examples/filledline01.php
+++ /dev/null
@@ -1,24 +0,0 @@
-img->SetMargin(40,40,40,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->title->Set("Example of filled line plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new LinePlot($datay);
-$p1->SetFillColor("orange");
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$graph->Add($p1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/filledlineex01.1.php b/#jpgraph/src/Examples/filledlineex01.1.php
deleted file mode 100644
index 547d207e..00000000
--- a/#jpgraph/src/Examples/filledlineex01.1.php
+++ /dev/null
@@ -1,24 +0,0 @@
-SetScale("textlin");
-
-$graph->img->SetMargin(40,40,40,40);
-$graph->SetShadow();
-$graph->SetGridDepth(DEPTH_FRONT);
-
-$graph->title->Set("Example of filled line plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new LinePlot($datay);
-$p1->SetFillColor("orange");
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$graph->Add($p1);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/filledlineex01.php b/#jpgraph/src/Examples/filledlineex01.php
deleted file mode 100644
index 6ea2c88d..00000000
--- a/#jpgraph/src/Examples/filledlineex01.php
+++ /dev/null
@@ -1,23 +0,0 @@
-SetScale('textlin');
-
-$graph->img->SetMargin(40,40,40,40);
-$graph->SetShadow();
-
-$graph->title->Set("Example of filled line plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new LinePlot($datay);
-$p1->SetFillColor("orange");
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$graph->Add($p1);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/filledlineex02.php b/#jpgraph/src/Examples/filledlineex02.php
deleted file mode 100644
index 1b4db02f..00000000
--- a/#jpgraph/src/Examples/filledlineex02.php
+++ /dev/null
@@ -1,24 +0,0 @@
-img->SetMargin(40,40,40,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->title->Set("Example of filled line plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->subtitle->Set("(Starting from Y=0)");
-
-$graph->yaxis->scale->SetAutoMin(0);
-
-$p1 = new LinePlot($datay);
-$p1->SetFillColor("orange");
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$graph->Add($p1);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/filledlineex03.php b/#jpgraph/src/Examples/filledlineex03.php
deleted file mode 100644
index 084e655d..00000000
--- a/#jpgraph/src/Examples/filledlineex03.php
+++ /dev/null
@@ -1,23 +0,0 @@
-SetScale('intlin');
-$graph->title->Set('Filled line with NULL values');
-//Make sure data starts from Zero whatever data we have
-$graph->yscale->SetAutoMin(0);
-
-$p1 = new LinePlot($datay);
-$p1->SetFillColor('lightblue');
-$graph->Add($p1);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/filledstepstyleex1.php b/#jpgraph/src/Examples/filledstepstyleex1.php
deleted file mode 100644
index 75688b5f..00000000
--- a/#jpgraph/src/Examples/filledstepstyleex1.php
+++ /dev/null
@@ -1,39 +0,0 @@
-SetScale("textlin");
-$graph->SetShadow(true);
-$graph->SetMarginColor("antiquewhite");
-$graph->img->SetMargin(60,40,40,50);
-$graph->img->setTransparent("white");
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->xaxis->setTextTickInterval(1);
-$graph->xaxis->SetTextLabelInterval(1);
-$graph->legend->SetFillColor("antiquewhite");
-$graph->legend->SetShadow(true);
-$graph->legend->SetLayout(LEGEND_VERT);
-$graph->legend->Pos(0.02,0.01);
-$graph->title->Set("Step Styled Example");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot = new LinePlot($ydata);
-$lineplot->SetColor("black");
-$lineplot->setFillColor("gray7");
-$lineplot->SetStepStyle();
-$lineplot->SetLegend(" 2002 ");
-
-// add plot to the graph
-$graph->Add($lineplot);
-$graph->ygrid->show(false,false);
-
-// display graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/fireplace.jpg b/#jpgraph/src/Examples/fireplace.jpg
deleted file mode 100644
index 8006e3d0..00000000
Binary files a/#jpgraph/src/Examples/fireplace.jpg and /dev/null differ
diff --git a/#jpgraph/src/Examples/fixscale_radarex1.php b/#jpgraph/src/Examples/fixscale_radarex1.php
deleted file mode 100644
index d663d908..00000000
--- a/#jpgraph/src/Examples/fixscale_radarex1.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetScale('lin',0,50);
-$graph->yscale->ticks->Set(25,5);
-$graph->SetColor('white');
-$graph->SetShadow();
-
-$graph->SetCenter(0.5,0.55);
-
-$graph->axis->SetFont(FF_FONT1,FS_BOLD);
-$graph->axis->SetWeight(2);
-
-// Uncomment the following lines to also show grid lines.
-$graph->grid->SetLineStyle('dashed');
-$graph->grid->SetColor('navy@0.5');
-$graph->grid->Show();
-
-$graph->ShowMinorTickMarks();
-
-$graph->title->Set('Quality result');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->SetTitles(array('One','Two','Three','Four','Five','Sex','Seven','Eight','Nine','Ten'));
-
-$plot = new RadarPlot(array(12,35,20,30,33,15,37));
-$plot->SetLegend('Goal');
-$plot->SetColor('red','lightred');
-$plot->SetFillColor('lightblue');
-$plot->SetLineWeight(2);
-
-$graph->Add($plot);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/footerex1.php b/#jpgraph/src/Examples/footerex1.php
deleted file mode 100644
index a3d113dc..00000000
--- a/#jpgraph/src/Examples/footerex1.php
+++ /dev/null
@@ -1,62 +0,0 @@
-SetMarginColor('white');
-$graph->SetScale("textlin");
-$graph->SetFrame(false);
-$graph->SetMargin(30,5,25,50);
-
-// Setup the tab
-$graph->tabtitle->Set(' Year 2003 ' );
-$graph->tabtitle->SetFont(FF_ARIAL,FS_BOLD,13);
-$graph->tabtitle->SetColor('darkred','#E1E1FF');
-
-// Enable X-grid as well
-$graph->xgrid->Show();
-
-// Use months as X-labels
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-$graph->footer->left->Set('L. footer');
-$graph->footer->left->SetFont(FF_ARIAL,FS_NORMAL,12);
-$graph->footer->left->SetColor('darkred');
-$graph->footer->center->Set('C. footer');
-$graph->footer->center->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->footer->center->SetColor('darkred');
-$graph->footer->right->Set('R. footer');
-$graph->footer->right->SetFont(FF_ARIAL,FS_NORMAL,12);
-$graph->footer->right->SetColor('darkred');
-
-// Create the plot
-$p1 = new LinePlot($datay1);
-$p1->SetColor("navy");
-
-// Use an image of favourite car as marker
-$p1->mark->SetType(MARK_IMG,'saab_95.jpg',0.5);
-
-// Displayes value on top of marker image
-$p1->value->SetFormat('%d mil');
-$p1->value->Show();
-$p1->value->SetColor('darkred');
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,10);
-// Increase the margin so that the value is printed avove tje
-// img marker
-$p1->value->SetMargin(14);
-
-// Incent the X-scale so the first and last point doesn't
-// fall on the edges
-$p1->SetCenter();
-
-$graph->Add($p1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/funcex1.php b/#jpgraph/src/Examples/funcex1.php
deleted file mode 100644
index de12e616..00000000
--- a/#jpgraph/src/Examples/funcex1.php
+++ /dev/null
@@ -1,58 +0,0 @@
-E(-1.2*M_PI,1.2*M_PI);
-
-$f = new FuncGenerator('$x*$x');
-list($x2data,$y2data) = $f->E(-2,2);
-
-// Setup the basic graph
-$graph = new Graph(450,350);
-$graph->SetScale("linlin");
-$graph->SetShadow();
-$graph->img->SetMargin(50,50,60,40);
-$graph->SetBox(true,'black',2);
-$graph->SetMarginColor('white');
-$graph->SetColor('lightyellow');
-
-// ... and titles
-$graph->title->Set('Example of Function plot');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->subtitle->Set("(With some more advanced axis formatting\nHiding first and last label)");
-$graph->subtitle->SetFont(FF_FONT1,FS_NORMAL);
-$graph->xgrid->Show();
-
-$graph->yaxis->SetPos(0);
-$graph->yaxis->SetWeight(2);
-$graph->yaxis->HideZeroLabel();
-$graph->yaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->SetColor('black','darkblue');
-$graph->yaxis->HideTicks(true,false);
-$graph->yaxis->HideFirstLastLabel();
-
-$graph->xaxis->SetWeight(2);
-$graph->xaxis->HideZeroLabel();
-$graph->xaxis->HideFirstLastLabel();
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->SetColor('black','darkblue');
-
-$lp1 = new LinePlot($ydata,$xdata);
-$lp1->SetColor('blue');
-$lp1->SetWeight(2);
-
-$lp2 = new LinePlot($y2data,$x2data);
-list($xm,$ym)=$lp2->Max();
-$lp2->SetColor('red');
-$lp2->SetWeight(2);
-
-
-$graph->Add($lp1);
-$graph->Add($lp2);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/funcex2.php b/#jpgraph/src/Examples/funcex2.php
deleted file mode 100644
index 5715f36a..00000000
--- a/#jpgraph/src/Examples/funcex2.php
+++ /dev/null
@@ -1,34 +0,0 @@
-E(-M_PI,M_PI,25);
-
-$graph = new Graph(380,450);
-$graph->SetScale("linlin");
-$graph->SetShadow();
-$graph->img->SetMargin(50,50,60,40);
-$graph->SetBox(true,'black',2);
-$graph->SetMarginColor('white');
-$graph->SetColor('lightyellow');
-$graph->SetAxisStyle(AXSTYLE_SIMPLE);
-
-//$graph->xaxis->SetLabelFormat('%.1f');
-
-$graph->title->Set("Function plot with marker");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->subtitle->Set("(BOXOUT Axis style)");
-$graph->subtitle->SetFont(FF_FONT1,FS_NORMAL);
-
-$lp1 = new LinePlot($ydata,$xdata);
-$lp1->mark->SetType(MARK_FILLEDCIRCLE);
-$lp1->mark->SetFillColor("red");
-$lp1->SetColor("blue");
-
-$graph->Add($lp1);
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/funcex3.php b/#jpgraph/src/Examples/funcex3.php
deleted file mode 100644
index a63456ea..00000000
--- a/#jpgraph/src/Examples/funcex3.php
+++ /dev/null
@@ -1,37 +0,0 @@
-E(-M_PI,M_PI,25);
-
-$graph = new Graph(350,430);
-$graph->SetScale("linlin");
-$graph->SetShadow();
-$graph->img->SetMargin(50,50,60,40);
-$graph->SetBox(true,'black',2);
-$graph->SetMarginColor('white');
-$graph->SetColor('lightyellow');
-$graph->SetAxisStyle(AXSTYLE_BOXIN);
-$graph->xgrid->Show();
-
-
-//$graph->xaxis->SetLabelFormat('%.0f');
-
-$graph->img->SetMargin(50,50,60,40);
-
-$graph->title->Set("Function plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->subtitle->Set("(BOXIN Axis style)");
-$graph->subtitle->SetFont(FF_FONT1,FS_NORMAL);
-
-$lp1 = new LinePlot($ydata,$xdata);
-$lp1->SetColor("blue");
-$lp1->SetWeight(2);
-
-$graph->Add($lp1);
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/funcex4.php b/#jpgraph/src/Examples/funcex4.php
deleted file mode 100644
index bcd8b4dc..00000000
--- a/#jpgraph/src/Examples/funcex4.php
+++ /dev/null
@@ -1,63 +0,0 @@
-E(-1.2*M_PI,1.2*M_PI);
-
-$f = new FuncGenerator('$x*$x');
-list($x2data,$y2data) = $f->E(-2,2);
-
-// Setup the basic graph
-$graph = new Graph(450,350);
-$graph->SetScale("linlin");
-//$graph->SetShadow();
-$graph->img->SetMargin(5,10,60,9);
-$graph->SetBox(true,'green',2);
-$graph->SetMarginColor('black');
-$graph->SetColor('black');
-
-// ... and titles
-$graph->title->Set('Example of Function plot');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->title->SetColor('lightgreen');
-$graph->subtitle->Set("(With some more advanced axis formatting\nHiding first and last label)");
-$graph->subtitle->SetFont(FF_FONT1,FS_NORMAL);
-$graph->subtitle->SetColor('lightgreen');
-
-$graph->xgrid->Show();
-$graph->xgrid->SetColor('darkgreen');
-$graph->ygrid->SetColor('darkgreen');
-
-$graph->yaxis->SetPos(0);
-$graph->yaxis->SetWeight(2);
-$graph->yaxis->HideZeroLabel();
-$graph->yaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->SetColor('green','green');
-$graph->yaxis->HideTicks(true,true);
-$graph->yaxis->HideFirstLastLabel();
-
-$graph->xaxis->SetWeight(2);
-$graph->xaxis->HideZeroLabel();
-$graph->xaxis->HideFirstLastLabel();
-$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->SetColor('green','green');
-
-$lp1 = new LinePlot($ydata,$xdata);
-$lp1->SetColor('yellow');
-$lp1->SetWeight(2);
-
-$lp2 = new LinePlot($y2data,$x2data);
-list($xm,$ym)=$lp2->Max();
-$lp2->SetColor('blue');
-$lp2->SetWeight(2);
-
-
-$graph->Add($lp1);
-$graph->Add($lp2);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/fusion_example.php b/#jpgraph/src/Examples/fusion_example.php
deleted file mode 100644
index 4e4ae00f..00000000
--- a/#jpgraph/src/Examples/fusion_example.php
+++ /dev/null
@@ -1,57 +0,0 @@
- array (0 => 79, 1 => -25, 2 => -7, 3 => 85, 4 => -26, 5 => -32, ),
- 1 => array (0 => 76, 1 => 51, 2 => 86, 3 => 12, 4 => -7, 5 => 94, ),
- 2 => array (0 => 49, 1 => 38, 2 => 7, 3 => -40, 4 => 9, 5 => -7, ),
- 3 => array ( 0 => 69, 1 => 96, 2 => 49, 3 => 7, 4 => 92, 5 => -38, ),
- 4 => array ( 0 => 68, 1 => 16, 2 => 82, 3 => -49, 4 => 50, 5 => 7, ),
- 5 => array ( 0 => -37, 1 => 28, 2 => 32, 3 => 6, 4 => 13, 5 => 57, ),
- 6 => array ( 0 => 24, 1 => -11, 2 => 7, 3 => 10, 4 => 51, 5 => 51, ),
- 7 => array ( 0 => 3, 1 => -1, 2 => -12, 3 => 61, 4 => 10, 5 => 47, ),
- 8 => array ( 0 => -47, 1 => -21, 2 => 43, 3 => 53, 4 => 36, 5 => 34, ),
-);
-
-
-// Create the graph. These two calls are always required
-$graph = new Graph(400,300);
-
-$graph->SetScale("textlin");
-if ($theme) {
- $graph->SetTheme(new $theme());
-}
-$theme_class = new FusionTheme;
-$graph->SetTheme($theme_class);
-
-$plot = array();
-// Create the bar plots
-for ($i = 0; $i < 4; $i++) {
- $plot[$i] = new BarPlot($data[$i]);
- $plot[$i]->SetLegend('plot'.($i+1));
-}
-//$acc1 = new AccBarPlot(array($plot[0], $plot[1]));
-//$acc1->value->Show();
-$gbplot = new GroupBarPlot(array($plot[2], $plot[1] ));
-
-for ($i = 4; $i < 8; $i++) {
- $plot[$i] = new LinePlot($data[$i]);
- $plot[$i]->SetLegend('plot'.$i);
- $plot[$i]->value->Show();
-}
-
-$graph->Add($gbplot);
-$graph->Add($plot[4]);
-
-$title = "FusionTheme Example";
-$title = mb_convert_encoding($title,'UTF-8');
-$graph->title->Set($title);
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/gantt_samerowex1.php b/#jpgraph/src/Examples/gantt_samerowex1.php
deleted file mode 100644
index 6c59cebd..00000000
--- a/#jpgraph/src/Examples/gantt_samerowex1.php
+++ /dev/null
@@ -1,63 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Activities on same row");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1); // 1=default value
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity1 = new GanttBar(0,"Activity 1","2001-12-21","2001-12-26","");
-
-// Yellow diagonal line pattern on a red background
-$activity1->SetPattern(BAND_RDIAG,"yellow");
-$activity1->SetFillColor("red");
-
-// Set absolute height of activity
-$activity1->SetHeight(16);
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(0,"","2001-12-31","2002-01-2","[BO]");
-
-// ADjust font for caption
-$activity2->caption->SetFont(FF_ARIAL,FS_BOLD);
-$activity2->caption->SetColor("darkred");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height of activity
-$activity2->SetHeight(16);
-
-// Finally add the bar to the graph
-$graph->Add($activity1);
-$graph->Add($activity2);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/gantt_samerowex2.php b/#jpgraph/src/Examples/gantt_samerowex2.php
deleted file mode 100644
index b3e2702a..00000000
--- a/#jpgraph/src/Examples/gantt_samerowex2.php
+++ /dev/null
@@ -1,65 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Activities on same row");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set('Using break style');
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1); // 1=default value
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity1 = new GanttBar(0,"Activity 1","2001-12-21","2001-12-26","");
-
-// Yellow diagonal line pattern on a red background
-$activity1->SetPattern(BAND_RDIAG,"yellow");
-$activity1->SetFillColor("red");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$break1 = new GanttBar(0,'',"2001-12-27","2001-12-30","");
-$break1->SetBreakStyle(true,'dotted',2);
-$break1->SetColor('red');
-$graph->Add($break1);
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(0,"","2001-12-31","2002-01-2","[BO]");
-
-// ADjust font for caption
-$activity2->caption->SetFont(FF_ARIAL,FS_BOLD);
-$activity2->caption->SetColor("darkred");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Finally add the bar to the graph
-$graph->Add($activity1);
-$graph->Add($activity2);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/gantt_textex1.php b/#jpgraph/src/Examples/gantt_textex1.php
deleted file mode 100644
index dae1d56e..00000000
--- a/#jpgraph/src/Examples/gantt_textex1.php
+++ /dev/null
@@ -1,96 +0,0 @@
-SetBox();
-$graph->SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Example with added texts");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Set table title
-$graph->scale->tableTitle->Set("(Rev: 1.22)");
-$graph->scale->tableTitle->SetFont(FF_FONT1,FS_BOLD);
-$graph->scale->SetTableTitleBackground("silver");
-
-// Modify the appearance of the dividing lines
-$graph->scale->divider->SetWeight(3);
-$graph->scale->divider->SetColor("navy");
-$graph->scale->dividerh->SetWeight(3);
-$graph->scale->dividerh->SetColor("navy");
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-01-07","[50%]");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Set absolute height
-$activity->SetHeight(10);
-
-// Specify progress to 60%
-$activity->progress->Set(0.6);
-$activity->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2001-12-27","[30%]");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Specify progress to 30%
-$activity2->progress->Set(0.3);
-$activity2->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Add text to top left corner of graph
-$txt1 = new Text();
-$txt1->SetPos(5,2);
-$txt1->Set("Note:\nEstimate done w148");
-$txt1->SetFont(FF_ARIAL,FS_BOLD,12);
-$txt1->SetColor('darkred');
-$graph->Add($txt1);
-
-// Add text to the top bar
-$txt2 = new Text();
-$txt2->SetScalePos("2002-01-01",1);
-$txt2->SetFont(FF_ARIAL,FS_BOLD,12);
-$txt2->SetAlign('left','center');
-$txt2->Set("Remember this!");
-$txt2->SetBox('yellow');
-$graph->Add($txt2);
-
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttcolumnfontsex01.php b/#jpgraph/src/Examples/ganttcolumnfontsex01.php
deleted file mode 100644
index a371f875..00000000
--- a/#jpgraph/src/Examples/ganttcolumnfontsex01.php
+++ /dev/null
@@ -1,68 +0,0 @@
-SetMarginColor('gray:1.7');
-$graph->SetColor('white');
-
-// Setup the graph title and title font
-$graph->title->Set("Example of column fonts");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,14);
-
-// Show three headers
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HMONTH| GANTT_HYEAR);
-
-// Set the column headers and font
-$graph->scale->actinfo->SetColTitles( array('Name','Start','End'),array(100));
-$graph->scale->actinfo->SetFont(FF_ARIAL,FS_BOLD,11);
-
-// Some "dummy" data to be dsiplayed
-$data = array(
- array(0,'Group 1', '2001-11-27','2001-12-05'),
- array(1,' Activity 1', '2001-11-27','2001-11-29'),
- array(2,' Activity 2', '2001-11-28','2001-12-05'),
- array(3,'Group 2', '2001-11-29','2001-12-10'),
- array(4,' Activity 1', '2001-11-29','2001-12-03'),
- array(5,' Activity 2', '2001-12-01','2001-12-10'),
-
-);
-
-// Format and add the Gantt bars to the chart
-$n = count($data);
-for($i=0; $i < $n; ++$i) {
- if( $i === 0 || $i === 3 ) {
- // Format the group bars
- $bar = new GanttBar($data[$i][0],array($data[$i][1],$data[$i][2],$data[$i][3]),$data[$i][2],$data[$i][3],'',0.35);
-
- // For each group make the name bold but keep the dates as the default font
- $bar->title->SetColumnFonts(array(array(FF_ARIAL,FS_BOLD,11)));
-
- // Add group markers
- $bar->leftMark->SetType( MARK_LEFTTRIANGLE );
- $bar->leftMark->Show();
- $bar->rightMark->SetType( MARK_RIGHTTRIANGLE );
- $bar->rightMark->Show();
- $bar->SetFillColor('black');
- $bar->SetPattern(BAND_SOLID,'black');
- }
- else {
- // Format the activity bars
- $bar = new GanttBar($data[$i][0],array($data[$i][1],$data[$i][2],$data[$i][3]),$data[$i][2],$data[$i][3],'',0.45);
- $bar->SetPattern(BAND_RDIAG,'black');
- $bar->SetFillColor('orange');
- }
- // Default font
- $bar->title->SetFont(FF_ARIAL,FS_NORMAL,10);
- $graph->Add($bar);
-}
-
-// Send back the graph to the client
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttconstrainex0.php b/#jpgraph/src/Examples/ganttconstrainex0.php
deleted file mode 100644
index 8f5b72a1..00000000
--- a/#jpgraph/src/Examples/ganttconstrainex0.php
+++ /dev/null
@@ -1,38 +0,0 @@
-title->Set("Example with grouping and constrains");
-
-// Setup scale
-$graph->ShowHeaders(GANTT_HYEAR | GANTT_HMONTH | GANTT_HDAY | GANTT_HWEEK);
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAYWNBR);
-
-// Add the specified activities
-$graph->CreateSimple($data,$constrains,$progress);
-
-// .. and stroke the graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttconstrainex1.php b/#jpgraph/src/Examples/ganttconstrainex1.php
deleted file mode 100644
index 7e9a3c1f..00000000
--- a/#jpgraph/src/Examples/ganttconstrainex1.php
+++ /dev/null
@@ -1,40 +0,0 @@
-title->Set("Example with grouping and constrains");
-
-// Setup scale
-$graph->ShowHeaders(GANTT_HYEAR | GANTT_HMONTH | GANTT_HDAY | GANTT_HWEEK);
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAYWNBR);
-
-// Add the specified activities
-$graph->CreateSimple($data,$constrains,$progress);
-
-// .. and stroke the graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttconstrainex2.php b/#jpgraph/src/Examples/ganttconstrainex2.php
deleted file mode 100644
index 1e6bbbab..00000000
--- a/#jpgraph/src/Examples/ganttconstrainex2.php
+++ /dev/null
@@ -1,39 +0,0 @@
-title->Set("Example with grouping and constrains");
-//$graph->SetFrame(false);
-
-// Setup scale
-$graph->ShowHeaders(GANTT_HYEAR | GANTT_HMONTH | GANTT_HDAY | GANTT_HWEEK);
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAYWNBR);
-
-// Add the specified activities
-$graph->CreateSimple($data,$constrains,$progress);
-
-// .. and stroke the graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttcsimex01.php b/#jpgraph/src/Examples/ganttcsimex01.php
deleted file mode 100644
index 997d3473..00000000
--- a/#jpgraph/src/Examples/ganttcsimex01.php
+++ /dev/null
@@ -1,28 +0,0 @@
-SetCSIMTarget('#','Go back 1');
-$bar1->title->SetCSIMTarget('#','Go back 1 (title)');
-$bar2 = new GanttBar(1,"Activity 2","2002-01-03","2002-01-25");
-$bar2->SetCSIMTarget('#','Go back 2');
-$bar2->title->SetCSIMTarget('#','Go back 2 (title)');
-
-$graph = new GanttGraph(500);
-$graph->title->Set("Example with image map");
-$graph->ShowHeaders(GANTT_HYEAR | GANTT_HMONTH | GANTT_HDAY | GANTT_HWEEK);
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-$graph->scale->week->SetFont(FF_FONT1);
-
-$graph->Add(array($bar1,$bar2));
-
-// And stroke
-$graph->StrokeCSIM();
-
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttcsimex02.php b/#jpgraph/src/Examples/ganttcsimex02.php
deleted file mode 100644
index b9dd4c66..00000000
--- a/#jpgraph/src/Examples/ganttcsimex02.php
+++ /dev/null
@@ -1,40 +0,0 @@
-title->Set("Example with image map");
-$graph->ShowHeaders(GANTT_HYEAR | GANTT_HMONTH | GANTT_HDAY | GANTT_HWEEK);
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-$graph->scale->week->SetFont(FF_FONT1);
-
-$graph->CreateSimple($data,$constrains,$progress);
-
-// Add the specified activities
-//SetupSimpleGantt($graph,$data,$constrains,$progress);
-
-// And stroke
-$graph->StrokeCSIM();
-
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttex00.php b/#jpgraph/src/Examples/ganttex00.php
deleted file mode 100644
index 618b7f9d..00000000
--- a/#jpgraph/src/Examples/ganttex00.php
+++ /dev/null
@@ -1,14 +0,0 @@
-Add($activity);
-
-// Display the Gantt chart
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex01.php b/#jpgraph/src/Examples/ganttex01.php
deleted file mode 100644
index b3b9d535..00000000
--- a/#jpgraph/src/Examples/ganttex01.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set('A main title');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set('(Draft version)');
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,'Activity 1','2001-12-21','2002-01-18');
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_LDIAG,'yellow');
-$activity->SetFillColor('red');
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex02.php b/#jpgraph/src/Examples/ganttex02.php
deleted file mode 100644
index 2ac42ed7..00000000
--- a/#jpgraph/src/Examples/ganttex02.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// Show day, week and month scale
-//$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-$graph->ShowHeaders(GANTT_HWEEK );
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_WNBR);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex03.php b/#jpgraph/src/Examples/ganttex03.php
deleted file mode 100644
index de528a53..00000000
--- a/#jpgraph/src/Examples/ganttex03.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(7,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex04.php b/#jpgraph/src/Examples/ganttex04.php
deleted file mode 100644
index c9ea4cb9..00000000
--- a/#jpgraph/src/Examples/ganttex04.php
+++ /dev/null
@@ -1,47 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-01-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-
-// Create a miletone
-$milestone = new MileStone(2,"Milestone",'2002-01-09','MS5');
-$milestone->caption->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->Add($milestone);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex05.php b/#jpgraph/src/Examples/ganttex05.php
deleted file mode 100644
index 6c0ef36c..00000000
--- a/#jpgraph/src/Examples/ganttex05.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-
-// Create a miletone
-$milestone = new MileStone(2,"Milestone","2002-01-15","2002-01-15");
-$milestone->title->SetColor("black");
-$milestone->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($milestone);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex06.php b/#jpgraph/src/Examples/ganttex06.php
deleted file mode 100644
index 8cf4dbb3..00000000
--- a/#jpgraph/src/Examples/ganttex06.php
+++ /dev/null
@@ -1,52 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-
-// Create a miletone
-$milestone = new MileStone(2,"Milestone","2002-01-15","2002-01-15");
-$milestone->title->SetColor("black");
-$milestone->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($milestone);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex07.php b/#jpgraph/src/Examples/ganttex07.php
deleted file mode 100644
index b1eb27aa..00000000
--- a/#jpgraph/src/Examples/ganttex07.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-
-// Create a miletone
-$milestone = new MileStone(2,"Milestone","2002-01-15","2002-01-15");
-$milestone->title->SetColor("black");
-$milestone->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($milestone);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex08.php b/#jpgraph/src/Examples/ganttex08.php
deleted file mode 100644
index 62d8947c..00000000
--- a/#jpgraph/src/Examples/ganttex08.php
+++ /dev/null
@@ -1,63 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-01-15");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Add a right marker
-$activity->rightMark->Show();
-$activity->rightMark->SetType(MARK_FILLEDCIRCLE);
-$activity->rightMark->SetWidth(13);
-$activity->rightMark->SetColor("red");
-$activity->rightMark->SetFillColor("red");
-$activity->rightMark->title->Set("M5");
-$activity->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$activity->rightMark->title->SetColor("white");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-
-// Create a miletone
-$milestone = new MileStone(2,"Milestone","2002-01-10","2002-01-10");
-$milestone->title->SetColor("black");
-$milestone->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($milestone);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex09.php b/#jpgraph/src/Examples/ganttex09.php
deleted file mode 100644
index f5fff1a1..00000000
--- a/#jpgraph/src/Examples/ganttex09.php
+++ /dev/null
@@ -1,66 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Add a right marker
-$activity->rightMark->Show();
-$activity->rightMark->SetType(MARK_FILLEDCIRCLE);
-$activity->rightMark->SetWidth(13);
-$activity->rightMark->SetColor("red");
-$activity->rightMark->SetFillColor("red");
-$activity->rightMark->title->Set("M5");
-$activity->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$activity->rightMark->title->SetColor("white");
-
-// Set absolute height
-$activity->SetHeight(8);
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-
-// Create a miletone
-$milestone = new MileStone(2,"Milestone","2002-01-15","2002-01-15");
-$milestone->title->SetColor("black");
-$milestone->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($milestone);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex10.php b/#jpgraph/src/Examples/ganttex10.php
deleted file mode 100644
index 459920cf..00000000
--- a/#jpgraph/src/Examples/ganttex10.php
+++ /dev/null
@@ -1,90 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Add a right marker
-$activity->rightMark->Show();
-$activity->rightMark->SetType(MARK_FILLEDCIRCLE);
-$activity->rightMark->SetWidth(13);
-$activity->rightMark->SetColor("red");
-$activity->rightMark->SetFillColor("red");
-$activity->rightMark->title->Set("M5");
-$activity->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$activity->rightMark->title->SetColor("white");
-
-// Set absolute height
-$activity->SetHeight(1);
-
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Add a right marker
-$activity2->rightMark->Show();
-$activity2->rightMark->SetType(MARK_FILLEDCIRCLE);
-$activity2->rightMark->SetWidth(13);
-$activity2->rightMark->SetColor("red");
-$activity2->rightMark->SetFillColor("red");
-$activity2->rightMark->title->Set("M5");
-$activity2->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$activity2->rightMark->title->SetColor("white");
-
-// Set absolute height
-$activity2->SetHeight(1);
-
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Create a miletone
-$milestone = new MileStone(2,"Milestone","2002-01-15","2002-01-15");
-$milestone->title->SetColor("black");
-$milestone->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($milestone);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex11.php b/#jpgraph/src/Examples/ganttex11.php
deleted file mode 100644
index 2fec58bb..00000000
--- a/#jpgraph/src/Examples/ganttex11.php
+++ /dev/null
@@ -1,89 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Add a right marker
-$activity->rightMark->Show();
-$activity->rightMark->SetType(MARK_FILLEDCIRCLE);
-$activity->rightMark->SetWidth(13);
-$activity->rightMark->SetColor("red");
-$activity->rightMark->SetFillColor("red");
-$activity->rightMark->title->Set("M5");
-$activity->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$activity->rightMark->title->SetColor("white");
-
-// Set absolute height
-$activity->SetHeight(10);
-
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Add a right marker
-$activity2->rightMark->Show();
-$activity2->rightMark->SetType(MARK_FILLEDCIRCLE);
-$activity2->rightMark->SetWidth(13);
-$activity2->rightMark->SetColor("red");
-$activity2->rightMark->SetFillColor("red");
-$activity2->rightMark->title->Set("M5");
-$activity2->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$activity2->rightMark->title->SetColor("white");
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Create a miletone
-$milestone = new MileStone(2,"Milestone","2002-01-15","2002-01-15");
-$milestone->title->SetColor("black");
-$milestone->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($milestone);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex12.php b/#jpgraph/src/Examples/ganttex12.php
deleted file mode 100644
index e7adc7a9..00000000
--- a/#jpgraph/src/Examples/ganttex12.php
+++ /dev/null
@@ -1,93 +0,0 @@
-SetBox();
-$graph->SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("A nice main title");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(Draft version)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(0);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Add a right marker
-$activity->rightMark->Show();
-$activity->rightMark->SetType(MARK_FILLEDCIRCLE);
-$activity->rightMark->SetWidth(13);
-$activity->rightMark->SetColor("red");
-$activity->rightMark->SetFillColor("red");
-$activity->rightMark->title->Set("M5");
-$activity->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$activity->rightMark->title->SetColor("white");
-
-// Set absolute height
-$activity->SetHeight(10);
-
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2002-02-20");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Add a right marker
-$activity2->rightMark->Show();
-$activity2->rightMark->SetType(MARK_FILLEDCIRCLE);
-$activity2->rightMark->SetWidth(13);
-$activity2->rightMark->SetColor("red");
-$activity2->rightMark->SetFillColor("red");
-$activity2->rightMark->title->Set("M5");
-$activity2->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$activity2->rightMark->title->SetColor("white");
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Create a miletone
-$milestone = new MileStone(2,"Milestone","2002-01-15","2002-01-15");
-$milestone->title->SetColor("black");
-$milestone->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($milestone);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex13-zoom1.php b/#jpgraph/src/Examples/ganttex13-zoom1.php
deleted file mode 100644
index 9a8457e6..00000000
--- a/#jpgraph/src/Examples/ganttex13-zoom1.php
+++ /dev/null
@@ -1,67 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Zooming a graph");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(zoom=0.7)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1.0); // 1=default value
-
-// Set zoom factor
-$graph->SetZoomFactor(0.7);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity1 = new GanttBar(0,"Activity 1","2001-12-21","2002-01-07","[ER,TR]");
-
-// Yellow diagonal line pattern on a red background
-$activity1->SetPattern(BAND_RDIAG,"yellow");
-$activity1->SetFillColor("red");
-
-// Set absolute height of activity
-$activity1->SetHeight(16);
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Activity 2","2001-12-21","2002-01-01","[BO,SW,JC]");
-
-// ADjust font for caption
-$activity2->caption->SetFont(FF_ARIAL,FS_BOLD);
-$activity2->caption->SetColor("darkred");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height of activity
-$activity2->SetHeight(16);
-
-// Finally add the bar to the graph
-$graph->Add($activity1);
-$graph->Add($activity2);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex13-zoom2.php b/#jpgraph/src/Examples/ganttex13-zoom2.php
deleted file mode 100644
index 882fb7bc..00000000
--- a/#jpgraph/src/Examples/ganttex13-zoom2.php
+++ /dev/null
@@ -1,67 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Zooming a graph");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(zoom=1.5)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1.0); // 1=default value
-
-// Set zoom factor
-$graph->SetZoomFactor(1.5);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity1 = new GanttBar(0,"Activity 1","2001-12-21","2002-01-07","[ER,TR]");
-
-// Yellow diagonal line pattern on a red background
-$activity1->SetPattern(BAND_RDIAG,"yellow");
-$activity1->SetFillColor("red");
-
-// Set absolute height of activity
-$activity1->SetHeight(16);
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Activity 2","2001-12-21","2002-01-01","[BO,SW,JC]");
-
-// ADjust font for caption
-$activity2->caption->SetFont(FF_ARIAL,FS_BOLD);
-$activity2->caption->SetColor("darkred");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height of activity
-$activity2->SetHeight(16);
-
-// Finally add the bar to the graph
-$graph->Add($activity1);
-$graph->Add($activity2);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex13.php b/#jpgraph/src/Examples/ganttex13.php
deleted file mode 100644
index 865a4db0..00000000
--- a/#jpgraph/src/Examples/ganttex13.php
+++ /dev/null
@@ -1,64 +0,0 @@
-SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Example of captions");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(ganttex13.php)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Instead of week number show the date for the first day in the week
-// on the week scale
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Make the week scale font smaller than the default
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR4);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1); // 1=default value
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity1 = new GanttBar(0,"Activity 1","2001-12-21","2002-01-07","[ER,TR]");
-
-// Yellow diagonal line pattern on a red background
-$activity1->SetPattern(BAND_RDIAG,"yellow");
-$activity1->SetFillColor("red");
-
-// Set absolute height of activity
-$activity1->SetHeight(16);
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Activity 2","2001-12-21","2002-01-01","[BO,SW,JC]");
-
-// ADjust font for caption
-$activity2->caption->SetFont(FF_ARIAL,FS_BOLD);
-$activity2->caption->SetColor("darkred");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height of activity
-$activity2->SetHeight(16);
-
-// Finally add the bar to the graph
-$graph->Add($activity1);
-$graph->Add($activity2);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex14.php b/#jpgraph/src/Examples/ganttex14.php
deleted file mode 100644
index a53942ba..00000000
--- a/#jpgraph/src/Examples/ganttex14.php
+++ /dev/null
@@ -1,67 +0,0 @@
-SetBox();
-$graph->SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Example of captions");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(ganttex14.php)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-01-07","[50%]");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Set absolute height
-$activity->SetHeight(10);
-
-// Specify progress to 60%
-$activity->progress->Set(0.6);
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2002-01-02","[30%]");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Specify progress to 30%
-$activity2->progress->Set(0.3);
-
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex15.php b/#jpgraph/src/Examples/ganttex15.php
deleted file mode 100644
index ae759839..00000000
--- a/#jpgraph/src/Examples/ganttex15.php
+++ /dev/null
@@ -1,68 +0,0 @@
-SetBox();
-$graph->SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Example of captions");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(ganttex15.php)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-01-07","[50%]");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Set absolute height
-$activity->SetHeight(10);
-
-// Specify progress to 60%
-$activity->progress->Set(0.6);
-$activity->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2002-01-02","[30%]");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Specify progress to 30%
-$activity2->progress->Set(0.3);
-$activity2->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex16.php b/#jpgraph/src/Examples/ganttex16.php
deleted file mode 100644
index bf3e06fa..00000000
--- a/#jpgraph/src/Examples/ganttex16.php
+++ /dev/null
@@ -1,73 +0,0 @@
-SetBox();
-$graph->SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Example of captions");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(ganttex16.php)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Set table title
-$graph->scale->tableTitle->Set("(Rev: 1.22)");
-$graph->scale->tableTitle->SetFont(FF_FONT1,FS_BOLD);
-$graph->scale->SetTableTitleBackground("silver");
-$graph->scale->tableTitle->Show();
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-01-07","[50%]");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Set absolute height
-$activity->SetHeight(10);
-
-// Specify progress to 60%
-$activity->progress->Set(0.6);
-$activity->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2002-01-02","[30%]");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Specify progress to 30%
-$activity2->progress->Set(0.3);
-$activity2->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex17-flag.php b/#jpgraph/src/Examples/ganttex17-flag.php
deleted file mode 100644
index 17eaca49..00000000
--- a/#jpgraph/src/Examples/ganttex17-flag.php
+++ /dev/null
@@ -1,88 +0,0 @@
-SetBox();
-$graph->SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Example of captions");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(ganttex17.php)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Set table title
-$graph->scale->tableTitle->Set("(Rev: 1.22)");
-$graph->scale->tableTitle->SetFont(FF_FONT1,FS_BOLD);
-$graph->scale->SetTableTitleBackground("silver");
-
-// Modify the appearance of the dividing lines
-$graph->scale->divider->SetWeight(3);
-$graph->scale->divider->SetColor("navy");
-$graph->scale->dividerh->SetWeight(3);
-$graph->scale->dividerh->SetColor("navy");
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-01-07","[50%]");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Set absolute height
-$activity->SetHeight(10);
-
-// Specify progress to 60%
-$activity->progress->Set(0.6);
-$activity->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2002-01-02","[30%]");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Specify progress to 30%
-$activity2->progress->Set(0.3);
-$activity2->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Add a coutnry flag
-$icon = new IconPlot();
-$icon->SetAnchor('left','top');
-$icon->SetCountryFlag('norway');
-$icon->SetMix(50);
-$icon->SetPos(5,5);
-$graph->Add($icon);
-
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex17.php b/#jpgraph/src/Examples/ganttex17.php
deleted file mode 100644
index cc2e7e89..00000000
--- a/#jpgraph/src/Examples/ganttex17.php
+++ /dev/null
@@ -1,78 +0,0 @@
-SetBox();
-$graph->SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Example of captions");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(ganttex17.php)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Set table title
-$graph->scale->tableTitle->Set("(Rev: 1.22)");
-$graph->scale->tableTitle->SetFont(FF_FONT1,FS_BOLD);
-$graph->scale->SetTableTitleBackground("silver");
-
-// Modify the appearance of the dividing lines
-$graph->scale->divider->SetWeight(3);
-$graph->scale->divider->SetColor("navy");
-$graph->scale->dividerh->SetWeight(3);
-$graph->scale->dividerh->SetColor("navy");
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-01-07","[50%]");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Set absolute height
-$activity->SetHeight(10);
-
-// Specify progress to 60%
-$activity->progress->Set(0.6);
-$activity->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2002-01-02","[30%]");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Specify progress to 30%
-$activity2->progress->Set(0.3);
-$activity2->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex18.php b/#jpgraph/src/Examples/ganttex18.php
deleted file mode 100644
index 4c4b5d91..00000000
--- a/#jpgraph/src/Examples/ganttex18.php
+++ /dev/null
@@ -1,82 +0,0 @@
-SetBox();
-$graph->SetShadow();
-
-// Add title and subtitle
-$graph->title->Set("Example of captions");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set("(ganttex18.php)");
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Set table title
-$graph->scale->tableTitle->Set("(Rev: 1.22)");
-$graph->scale->tableTitle->SetFont(FF_FONT1,FS_BOLD);
-$graph->scale->SetTableTitleBackground("silver");
-
-// Modify the appearance of the dividing lines
-$graph->scale->divider->SetWeight(3);
-$graph->scale->divider->SetColor("navy");
-
-$graph->scale->dividerh->SetWeight(3);
-$graph->scale->dividerh->SetColor("navy");
-
-$graph->SetBox(true,"navy",3);
-
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
-$graph->scale->month->SetFontColor("white");
-$graph->scale->month->SetBackgroundColor("blue");
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,"Project","2001-12-21","2002-01-07","[50%]");
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,"yellow");
-$activity->SetFillColor("red");
-
-// Set absolute height
-$activity->SetHeight(10);
-
-// Specify progress to 60%
-$activity->progress->Set(0.6);
-$activity->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,"Project","2001-12-21","2002-01-02","[30%]");
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,"yellow");
-$activity2->SetFillColor("red");
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Specify progress to 30%
-$activity2->progress->Set(0.3);
-$activity2->progress->SetPattern(BAND_HVCROSS,"blue");
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Add a vertical line
-$vline = new GanttVLine("2001-12-24","Phase 1");
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex19.php b/#jpgraph/src/Examples/ganttex19.php
deleted file mode 100644
index 7528412e..00000000
--- a/#jpgraph/src/Examples/ganttex19.php
+++ /dev/null
@@ -1,84 +0,0 @@
-SetBox();
-$graph->SetShadow();
-
-// Use default locale
-$graph->scale->SetDateLocale('sv_SE');
-
-// Add title and subtitle
-$graph->title->Set('Example of captions');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->subtitle->Set('(ganttex19.php)');
-
-// Show day, week and month scale
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
-
-// Set table title
-$graph->scale->tableTitle->Set('(Rev: 1.22)');
-$graph->scale->tableTitle->SetFont(FF_FONT1,FS_BOLD);
-$graph->scale->SetTableTitleBackground('silver');
-$graph->scale->tableTitle->Show();
-
-$graph->scale->divider->SetStyle('solid');
-$graph->scale->divider->SetWeight(2);
-$graph->scale->divider->SetColor('black');
-
-
-$graph->SetBox(true,'navy',2);
-
-
-// Use the short name of the month together with a 2 digit year
-// on the month scale
-$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
-$graph->scale->month->SetFontColor('white');
-$graph->scale->month->SetBackgroundColor('blue');
-
-// 0 % vertical label margin
-$graph->SetLabelVMarginFactor(1);
-
-// Format the bar for the first activity
-// ($row,$title,$startdate,$enddate)
-$activity = new GanttBar(0,'Project','2001-12-21','2002-01-07','[50%]');
-
-// Yellow diagonal line pattern on a red background
-$activity->SetPattern(BAND_RDIAG,'yellow');
-$activity->SetFillColor('red');
-
-// Set absolute height
-$activity->SetHeight(10);
-
-// Specify progress to 60%
-$activity->progress->Set(0.6);
-$activity->progress->SetPattern(BAND_HVCROSS,'blue');
-
-// Format the bar for the second activity
-// ($row,$title,$startdate,$enddate)
-$activity2 = new GanttBar(1,'Project','2001-12-21','2002-01-02','[30%]');
-
-// Yellow diagonal line pattern on a red background
-$activity2->SetPattern(BAND_RDIAG,'yellow');
-$activity2->SetFillColor('red');
-
-// Set absolute height
-$activity2->SetHeight(10);
-
-// Specify progress to 30%
-$activity2->progress->Set(0.3);
-$activity2->progress->SetPattern(BAND_HVCROSS,'blue');
-
-// Finally add the bar to the graph
-$graph->Add($activity);
-$graph->Add($activity2);
-
-// Add a vertical line
-$vline = new GanttVLine('2001-12-24','Phase 1');
-$vline->SetDayOffset(0.5);
-//$graph->Add($vline);
-
-// ... and display it
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/ganttex30.php b/#jpgraph/src/Examples/ganttex30.php
deleted file mode 100644
index 45cc80b6..00000000
--- a/#jpgraph/src/Examples/ganttex30.php
+++ /dev/null
@@ -1,87 +0,0 @@
-SetShadow();
-$graph->SetBox();
-
-// Titles for chart
-$graph->title->Set("General conversion plan");
-$graph->subtitle->Set("(Revision: 2001-11-18)");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// For illustration we enable all headers.
-$graph->ShowHeaders(GANTT_HYEAR | GANTT_HMONTH | GANTT_HDAY | GANTT_HWEEK);
-
-// For the week we choose to show the start date of the week
-// the default is to show week number (according to ISO 8601)
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Change the scale font
-$graph->scale->week->SetFont(FF_FONT0);
-$graph->scale->year->SetFont(FF_ARIAL,FS_BOLD,12);
-
-
-// Setup some data for the gantt bars
-$data = array(
- array(0,"Group 1", "2001-10-29","2001-11-27",FF_FONT1,FS_BOLD,8),
- array(1," Label 2", "2001-11-8","2001-12-14"),
- array(2," Label 3", "2001-11-01","2001-11-8"),
- array(4,"Group 2", "2001-11-07","2001-12-19",FF_FONT1,FS_BOLD,8),
- array(5," Label 4", "2001-11-8","2001-12-19"),
- array(6," Label 5", "2001-11-01","2001-11-8")
- );
-
-for($i=0; $i4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
-
- // If you like each bar can have a shadow
- // $bar->SetShadow(true,"darkgray");
-
- // For illustration lets make each bar be red with yellow diagonal stripes
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("red");
-
- // To indicate progress each bar can have a smaller bar within
- // For illustrative purpose just set the progress to 50% for each bar
- $bar->progress->Set(0.5);
-
- // Each bar may also have optional left and right plot marks
- // As illustration lets put a filled circle with a number at the end
- // of each bar
- $bar->rightMark->SetType(MARK_FILLEDCIRCLE);
- $bar->rightMark->SetFillColor("red");
- $bar->rightMark->SetColor("red");
- $bar->rightMark->SetWidth(10);
-
- // Title for the mark
- $bar->rightMark->title->Set("".$i+1);
- $bar->rightMark->title->SetColor("white");
- $bar->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,10);
- $bar->rightMark->Show();
-
- // ... and add the bar to the gantt chart
- $graph->Add($bar);
-}
-
-// Create a milestone mark
-$ms = new MileStone(7,"M5","2001-12-10","10/12");
-$ms->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($ms);
-
-// Create a vertical line to emphasize the milestone
-$vl = new GanttVLine("2001-12-10 13:00","Phase 1","darkred");
-$vl->SetDayOffset(0.5); // Center the line in the day
-$graph->Add($vl);
-
-// Output the graph
-$graph->Stroke();
-
-// EOF
-?>
diff --git a/#jpgraph/src/Examples/ganttex_slice.php b/#jpgraph/src/Examples/ganttex_slice.php
deleted file mode 100644
index 5ec95bc9..00000000
--- a/#jpgraph/src/Examples/ganttex_slice.php
+++ /dev/null
@@ -1,78 +0,0 @@
-SetShadow();
-$graph->SetBox();
-
-// Only show part of the Gantt
-$graph->SetDateRange('2001-11-22','2002-1-24');
-
-// Weeks start on Sunday
-$graph->scale->SetWeekStart(0);
-
-$graph->title->Set("General conversion plan");
-$graph->subtitle->Set("(Slice between 2001-11-22 to 2002-01-24)");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,20);
-
-$graph->ShowHeaders(GANTT_HYEAR | GANTT_HMONTH | GANTT_HDAY | GANTT_HWEEK);
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-$graph->scale->week->SetFont(FF_FONT1);
-
-
-$data = array(
- array(0,"Group 1\tJohan", "2002-1-23","2002-01-28",FF_FONT1,FS_BOLD,8),
- array(1," Label 2", "2001-10-26","2001-11-16"),
- array(2," Label 3", "2001-11-30","2001-12-01"),
- array(4,"Group 2", "2001-11-30","2001-12-22",FF_FONT1,FS_BOLD,8),
- array(5," Label 4", "2001-11-30","2001-12-1"),
- array(6," Label 5", "2001-12-6","2001-12-8"),
- array(8," Label 8", "2001-11-30","2002-01-02")
- );
-
-
-// make up some fictionary activity bars
-for($i=0; $i4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
-
- $bar->rightMark->Show();
- $bar->rightMark->SetType(MARK_FILLEDCIRCLE);
- $bar->rightMark->SetWidth(8);
- $bar->rightMark->SetColor("red");
- $bar->rightMark->SetFillColor("red");
- $bar->rightMark->title->Set($i+1);
- $bar->rightMark->title->SetFont(FF_ARIAL,FS_BOLD,12);
- $bar->rightMark->title->SetColor("white");
-
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("red");
- $bar->progress->Set($i/10);
- $bar->progress->SetPattern(GANTT_SOLID,"darkgreen");
-
- $graph->Add($bar);
-}
-
-
-// The line will NOT be shown since it is outside the specified slice
-$vline = new GanttVLine("2002-02-28");
-$vline->title->Set("2002-02-28");
-$vline->title->SetFont(FF_FONT1,FS_BOLD,10);
-$graph->Add($vline);
-
-// The milestone will NOT be shown since it is outside the specified slice
-$ms = new MileStone(7,"M5","2002-01-28","28/1");
-$ms->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($ms);
-
-$graph->Stroke();
-
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/gantthgridex1.php b/#jpgraph/src/Examples/gantthgridex1.php
deleted file mode 100644
index 70a94813..00000000
--- a/#jpgraph/src/Examples/gantthgridex1.php
+++ /dev/null
@@ -1,63 +0,0 @@
-title->Set("Grid example");
-$graph->subtitle->Set("(Horizontal grid)");
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,14);
-
-// Specify what headers to show
-$graph->ShowHeaders(GANTT_HMONTH|GANTT_HDAY );
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-$graph->scale->week->SetFont(FF_FONT0);
-
-// Setup a horizontal grid
-$graph->hgrid->Show();
-$graph->hgrid->SetRowFillColor('darkblue@0.9');
-
-
-for($i=0; $i 4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("red");
- $graph->Add($bar);
-}
-
-// Setup a vertical marker line
-$vline = new GanttVLine("2001-11-01");
-$vline->SetDayOffset(0.5);
-$vline->title->Set("2001-11-01");
-$vline->title->SetFont(FF_FONT1,FS_BOLD,10);
-$graph->Add($vline);
-
-// Setup a milestone
-$ms = new MileStone(6,"M5","2001-11-28","28/12");
-$ms->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->Add($ms);
-
-// And to show that you can also add an icon we add "Tux"
-$icon = new IconPlot('penguin.png',0.05,0.95,1,15);
-$icon->SetAnchor('left','bottom');
-$graph->Add($icon);
-
-// .. and finally send it back to the browser
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/gantthourex1.php b/#jpgraph/src/Examples/gantthourex1.php
deleted file mode 100644
index bfe55324..00000000
--- a/#jpgraph/src/Examples/gantthourex1.php
+++ /dev/null
@@ -1,51 +0,0 @@
-SetMarginColor('blue:1.7');
-$graph->SetColor('white');
-
-$graph->SetBackgroundGradient('navy','white',GRAD_HOR,BGRAD_MARGIN);
-$graph->scale->hour->SetBackgroundColor('lightyellow:1.5');
-$graph->scale->hour->SetFont(FF_FONT1);
-$graph->scale->day->SetBackgroundColor('lightyellow:1.5');
-$graph->scale->day->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->title->Set("Example of hours in scale");
-$graph->title->SetColor('white');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,14);
-
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HHOUR);
-
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-$graph->scale->week->SetFont(FF_FONT1);
-$graph->scale->hour->SetIntervall(4);
-
-$graph->scale->hour->SetStyle(HOURSTYLE_HM24);
-$graph->scale->day->SetStyle(DAYSTYLE_SHORTDAYDATE3);
-
-$data = array(
- array(0," Label 1", "2001-01-26 04:00","2001-01-26 14:00"),
- array(1," Label 2", "2001-01-26 10:00","2001-01-26 18:00"),
- array(2," Label 3", "2001-01-26","2001-01-27 10:00")
-);
-
-
-for($i=0; $i4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("red");
- $graph->Add($bar);
-}
-
-$graph->Stroke();
-
-
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/gantthourminex1.php b/#jpgraph/src/Examples/gantthourminex1.php
deleted file mode 100644
index 8a76bf12..00000000
--- a/#jpgraph/src/Examples/gantthourminex1.php
+++ /dev/null
@@ -1,93 +0,0 @@
-SetMarginColor('darkgreen@0.8');
-$graph->SetColor('white');
-
-// We want to display day, hour and minute scales
-$graph->ShowHeaders(GANTT_HDAY | GANTT_HHOUR | GANTT_HMIN);
-
-// We want to have the following titles in our columns
-// describing each activity
-$graph->scale->actinfo->SetColTitles(
- array('Act','Duration','Start','Finish','Resp'));//,array(100,70,70,70));
-
-// Uncomment the following line if you don't want the 3D look
-// in the columns headers
-//$graph->scale->actinfo->SetStyle(ACTINFO_2D);
-
-$graph->scale->actinfo->SetFont(FF_ARIAL,FS_NORMAL,10);
-
-//These are the default values for use in the columns
-//$graph->scale->actinfo->SetFontColor('black');
-//$graph->scale->actinfo->SetBackgroundColor('lightgray');
-//$graph->scale->actinfo->vgrid->SetStyle('solid');
-
-$graph->scale->actinfo->vgrid->SetColor('gray');
-$graph->scale->actinfo->SetColor('darkgray');
-
-// Setup day format
-$graph->scale->day->SetBackgroundColor('lightyellow:1.5');
-$graph->scale->day->SetFont(FF_ARIAL);
-$graph->scale->day->SetStyle(DAYSTYLE_SHORTDAYDATE1);
-
-// Setup hour format
-$graph->scale->hour->SetIntervall(1);
-$graph->scale->hour->SetBackgroundColor('lightyellow:1.5');
-$graph->scale->hour->SetFont(FF_FONT0);
-$graph->scale->hour->SetStyle(HOURSTYLE_H24);
-$graph->scale->hour->grid->SetColor('gray:0.8');
-
-// Setup minute format
-$graph->scale->minute->SetIntervall(30);
-$graph->scale->minute->SetBackgroundColor('lightyellow:1.5');
-$graph->scale->minute->SetFont(FF_FONT0);
-$graph->scale->minute->SetStyle(MINUTESTYLE_MM);
-$graph->scale->minute->grid->SetColor('lightgray');
-
-$graph->scale->tableTitle->Set('Phase 1');
-$graph->scale->tableTitle->SetFont(FF_ARIAL,FS_NORMAL,12);
-$graph->scale->SetTableTitleBackground('darkgreen@0.6');
-$graph->scale->tableTitle->Show(true);
-
-$graph->title->Set("Example of hours & mins scale");
-$graph->title->SetColor('darkgray');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,14);
-
-
-for($i=0; $i4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("gray");
- $graph->Add($bar);
-}
-
-
-//$vline = new GanttVLine("2001-11-27");//d=1006858800,
-$vline = new GanttVLine("2001-11-27 9:00");//d=1006858800,
-$vline->SetWeight(5);
-$vline->SetDayOffset(0);
-$vline->title->Set("27/11 9:00");
-$vline->title->SetFont(FF_FONT1,FS_BOLD,10);
-$graph->Add($vline);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/gantticonex1.php b/#jpgraph/src/Examples/gantticonex1.php
deleted file mode 100644
index b5a31976..00000000
--- a/#jpgraph/src/Examples/gantticonex1.php
+++ /dev/null
@@ -1,77 +0,0 @@
-title->Set("Gantt chart with title columns and icons");
-$graph->title->SetFont(FF_ARIAL, FS_BOLD,12);
-$graph->title->SetMargin(10);
-
-// Explicitely set the date range
-// (Autoscaling will of course also work)
-$graph->SetDateRange('2001-10-06','2002-4-10');
-
-// 1.5 line spacing to make more room
-$graph->SetVMarginFactor(1.5);
-
-// Setup some nonstandard colors
-$graph->SetMarginColor('darkgreen@0.95');
-$graph->SetBox(true,'yellow:0.6',2);
-$graph->SetFrame(true,'darkgreen',4);
-$graph->scale->divider->SetColor('yellow:0.6');
-$graph->scale->dividerh->SetColor('yellow:0.6');
-
-// Display month and year scale with the gridlines
-$graph->ShowHeaders(GANTT_HMONTH | GANTT_HYEAR);
-$graph->scale->month->grid->SetColor('gray');
-$graph->scale->month->grid->Show(true);
-$graph->scale->year->grid->SetColor('gray');
-$graph->scale->year->grid->Show(true);
-
-// For the titles we also add a minimum width of 100 pixels for the Task name column
-$graph->scale->actinfo->SetColTitles(
- array('Note','Task','Duration','Start','Finish'),array(30,100));
-$graph->scale->actinfo->SetBackgroundColor('green:0.5@0.5');
-$graph->scale->actinfo->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->scale->actinfo->vgrid->SetStyle('solid');
-$graph->scale->actinfo->vgrid->SetColor('gray');
-
-// Uncomment this to keep the columns but show no headers
-//$graph->scale->actinfo->Show(false);
-
-// Setup the icons we want to use
-$erricon = new IconImage(GICON_FOLDER,0.6);
-$startconicon = new IconImage(GICON_FOLDEROPEN,0.6);
-$endconicon = new IconImage(GICON_TEXTIMPORTANT,0.5);
-
-// Store the icons in the first column and use plain text in the others
-$data = array(
- array(0,array($erricon,"Pre-study","102 days","23 Nov '01","1 Mar '02")
- , "2001-11-23","2002-03-1",FF_ARIAL,FS_NORMAL,8),
- array(1,array($startconicon,"Prototype","21 days","26 Oct '01","16 Nov '01"),
- "2001-10-26","2001-11-16",FF_ARIAL,FS_NORMAL,8),
- array(2,array($endconicon,"Report","12 days","1 Mar '02","13 Mar '02"),
- "2002-03-01","2002-03-13",FF_ARIAL,FS_NORMAL,8)
-);
-
-// Create the bars and add them to the gantt chart
-for($i=0; $i4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("gray");
- $bar->progress->Set(0.5);
- $bar->progress->SetPattern(GANTT_SOLID,"darkgreen");
- $bar->title->SetCSIMTarget(array('#1'.$i,'#2'.$i,'#3'.$i,'#4'.$i,'#5'.$i),array('11'.$i,'22'.$i,'33'.$i));
- $graph->Add($bar);
-}
-
-// Output the chart
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttmonthyearex1.php b/#jpgraph/src/Examples/ganttmonthyearex1.php
deleted file mode 100644
index 6bc7809c..00000000
--- a/#jpgraph/src/Examples/ganttmonthyearex1.php
+++ /dev/null
@@ -1,50 +0,0 @@
-title->Set("Only month & year scale");
-
-// Setup some "very" nonstandard colors
-$graph->SetMarginColor('lightgreen@0.8');
-$graph->SetBox(true,'yellow:0.6',2);
-$graph->SetFrame(true,'darkgreen',4);
-$graph->scale->divider->SetColor('yellow:0.6');
-$graph->scale->dividerh->SetColor('yellow:0.6');
-
-// Explicitely set the date range
-// (Autoscaling will of course also work)
-$graph->SetDateRange('2001-10-06','2002-4-01');
-
-// Display month and year scale with the gridlines
-$graph->ShowHeaders(GANTT_HMONTH | GANTT_HYEAR);
-$graph->scale->month->grid->SetColor('gray');
-$graph->scale->month->grid->Show(true);
-$graph->scale->year->grid->SetColor('gray');
-$graph->scale->year->grid->Show(true);
-
-// Data for our example activities
-$data = array(
- array(0,"Group 1 Johan", "2001-11-23","2002-03-1",FF_FONT1,FS_BOLD,8),
- array(1," Label 2", "2001-10-26","2001-11-16"));
-
-// Create the bars and add them to the gantt chart
-for($i=0; $i4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("red");
- $bar->progress->Set(0.5);
- $bar->progress->SetPattern(GANTT_SOLID,"darkgreen");
- $graph->Add($bar);
-}
-
-// Output the chart
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttmonthyearex2.php b/#jpgraph/src/Examples/ganttmonthyearex2.php
deleted file mode 100644
index 4ed50925..00000000
--- a/#jpgraph/src/Examples/ganttmonthyearex2.php
+++ /dev/null
@@ -1,66 +0,0 @@
-title->Set("Only month & year scale");
-
-// Setup some "very" nonstandard colors
-$graph->SetMarginColor('lightgreen@0.8');
-$graph->SetBox(true,'yellow:0.6',2);
-$graph->SetFrame(true,'darkgreen',4);
-$graph->scale->divider->SetColor('yellow:0.6');
-$graph->scale->dividerh->SetColor('yellow:0.6');
-
-// Explicitely set the date range
-// (Autoscaling will of course also work)
-$graph->SetDateRange('2001-10-06','2002-4-10');
-
-// Display month and year scale with the gridlines
-$graph->ShowHeaders(GANTT_HMONTH | GANTT_HYEAR);
-$graph->scale->month->grid->SetColor('gray');
-$graph->scale->month->grid->Show(true);
-$graph->scale->year->grid->SetColor('gray');
-$graph->scale->year->grid->Show(true);
-
-
-// Setup activity info
-
-// For the titles we also add a minimum width of 100 pixels for the Task name column
-$graph->scale->actinfo->SetColTitles(
- array('Name','Duration','Start','Finish'),array(100));
-$graph->scale->actinfo->SetBackgroundColor('green:0.5@0.5');
-$graph->scale->actinfo->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->scale->actinfo->vgrid->SetStyle('solid');
-$graph->scale->actinfo->vgrid->SetColor('gray');
-
-// Data for our example activities
-$data = array(
- array(0,array("Pre-study","102 days","23 Nov '01","1 Mar '02")
- , "2001-11-23","2002-03-1",FF_ARIAL,FS_NORMAL,8),
- array(1,array("Prototype","21 days","26 Oct '01","16 Nov '01"),
- "2001-10-26","2001-11-16",FF_ARIAL,FS_NORMAL,8),
- array(2,array("Report","12 days","1 Mar '02","13 Mar '02"),
- "2002-03-01","2002-03-13",FF_ARIAL,FS_NORMAL,8)
-);
-
-// Create the bars and add them to the gantt chart
-for($i=0; $i4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("gray");
- $bar->progress->Set(0.5);
- $bar->progress->SetPattern(GANTT_SOLID,"darkgreen");
- $graph->Add($bar);
-}
-
-// Output the chart
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttmonthyearex3.php b/#jpgraph/src/Examples/ganttmonthyearex3.php
deleted file mode 100644
index fa0c3f67..00000000
--- a/#jpgraph/src/Examples/ganttmonthyearex3.php
+++ /dev/null
@@ -1,66 +0,0 @@
-title->Set("Only month & year scale");
-
-// Setup some "very" nonstandard colors
-$graph->SetMarginColor('lightgreen@0.8');
-$graph->SetBox(true,'yellow:0.6',2);
-$graph->SetFrame(true,'darkgreen',4);
-$graph->scale->divider->SetColor('yellow:0.6');
-$graph->scale->dividerh->SetColor('yellow:0.6');
-
-// Explicitely set the date range
-// (Autoscaling will of course also work)
-$graph->SetDateRange('2001-10-06','2002-4-10');
-
-// Display month and year scale with the gridlines
-$graph->ShowHeaders(GANTT_HMONTH | GANTT_HYEAR);
-$graph->scale->month->grid->SetColor('gray');
-$graph->scale->month->grid->Show(true);
-$graph->scale->year->grid->SetColor('gray');
-$graph->scale->year->grid->Show(true);
-
-
-// Setup activity info
-
-// For the titles we also add a minimum width of 100 pixels for the Task name column
-$graph->scale->actinfo->SetColTitles(
- array('Type','Name','Duration','Start','Finish'),array(40,100));
-$graph->scale->actinfo->SetBackgroundColor('green:0.5@0.5');
-$graph->scale->actinfo->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->scale->actinfo->vgrid->SetStyle('solid');
-$graph->scale->actinfo->vgrid->SetColor('gray');
-
-// Data for our example activities
-$data = array(
- array(0,array("","Pre-study","102 days","23 Nov '01","1 Mar '02")
- , "2001-11-23","2002-03-1",FF_ARIAL,FS_NORMAL,8),
- array(1,array("","Prototype","21 days","26 Oct '01","16 Nov '01"),
- "2001-10-26","2001-11-16",FF_ARIAL,FS_NORMAL,8),
- array(2,array("","Report","12 days","1 Mar '02","13 Mar '02"),
- "2002-03-01","2002-03-13",FF_ARIAL,FS_NORMAL,8)
-);
-
-// Create the bars and add them to the gantt chart
-for($i=0; $i4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("gray");
- $bar->progress->Set(0.5);
- $bar->progress->SetPattern(GANTT_SOLID,"darkgreen");
- $graph->Add($bar);
-}
-
-// Output the chart
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttmonthyearex4.php b/#jpgraph/src/Examples/ganttmonthyearex4.php
deleted file mode 100644
index defa2e73..00000000
--- a/#jpgraph/src/Examples/ganttmonthyearex4.php
+++ /dev/null
@@ -1,71 +0,0 @@
-title->Set("Adding a spaning title");
-
-// Setup some "very" nonstandard colors
-$graph->SetMarginColor('lightgreen@0.8');
-$graph->SetBox(true,'yellow:0.6',2);
-$graph->SetFrame(true,'darkgreen',4);
-$graph->scale->divider->SetColor('yellow:0.6');
-$graph->scale->dividerh->SetColor('yellow:0.6');
-
-// Explicitely set the date range
-// (Autoscaling will of course also work)
-$graph->SetDateRange('2001-11-06','2002-1-10');
-
-// Display month and year scale with the gridlines
-$graph->ShowHeaders(GANTT_HMONTH | GANTT_HYEAR | GANTT_HWEEK );
-$graph->scale->month->grid->SetColor('gray');
-$graph->scale->month->grid->Show(true);
-$graph->scale->year->grid->SetColor('gray');
-$graph->scale->year->grid->Show(true);
-
-
-//Setup spanning title
-$graph->scale->tableTitle->Set( 'Phase 1' );
-$graph->scale->tableTitle->SetFont( FF_ARIAL , FS_NORMAL , 16 );
-$graph->scale->SetTableTitleBackground( 'darkgreen@0.6' );
-$graph->scale->tableTitle->Show( true );
-
-// Setup activity info
-
-// For the titles we also add a minimum width of 100 pixels for the Task name column
-$graph->scale->actinfo->SetColTitles(array('Name','Duration','Start','Finish'),array(100));
-$graph->scale->actinfo->SetBackgroundColor('green:0.5@0.5');
-$graph->scale->actinfo->SetFont(FF_ARIAL,FS_NORMAL,10);
-$graph->scale->actinfo->vgrid->SetStyle('solid');
-$graph->scale->actinfo->vgrid->SetColor('gray');
-
-// Data for our example activities
-$data = array(
- array(0,array("Pre-study","102 days","23 Nov '01","1 Mar '02")
- , "2001-11-23","2002-03-1",FF_ARIAL,FS_NORMAL,8),
- array(1,array("Prototype","21 days","26 Oct '01","16 Nov '01"),
- "2001-10-26","2001-11-16",FF_ARIAL,FS_NORMAL,8),
- array(2,array("Report","12 days","1 Mar '02","13 Mar '02"),
- "2002-03-01","2002-03-13",FF_ARIAL,FS_NORMAL,8)
-);
-
-// Create the bars and add them to the gantt chart
-for($i=0; $i4 )
- $bar->title->SetFont($data[$i][4],$data[$i][5],$data[$i][6]);
- $bar->SetPattern(BAND_RDIAG,"yellow");
- $bar->SetFillColor("gray");
- $bar->progress->Set(0.5);
- $bar->progress->SetPattern(GANTT_SOLID,"darkgreen");
- $graph->Add($bar);
-}
-
-// Output the chart
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ganttsimpleex1.php b/#jpgraph/src/Examples/ganttsimpleex1.php
deleted file mode 100644
index 63e4efb6..00000000
--- a/#jpgraph/src/Examples/ganttsimpleex1.php
+++ /dev/null
@@ -1,31 +0,0 @@
-title->Set("Gantt Graph using CreateSimple()");
-
-// Setup scale
-$graph->ShowHeaders(GANTT_HYEAR | GANTT_HMONTH | GANTT_HDAY | GANTT_HWEEK);
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAY);
-
-// Add the specified activities
-$graph->CreateSimple($data);
-
-// .. and stroke the graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/grace_ex0.php b/#jpgraph/src/Examples/grace_ex0.php
deleted file mode 100644
index 5358ae51..00000000
--- a/#jpgraph/src/Examples/grace_ex0.php
+++ /dev/null
@@ -1,58 +0,0 @@
-img->SetMargin(40,30,40,50);
-$graph->SetScale("textint");
-$graph->SetFrame(true,'blue',1);
-$graph->SetColor('lightblue');
-$graph->SetMarginColor('lightblue');
-
-// Setup X-axis labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->xaxis->SetColor('darkblue','black');
-
-// Setup "hidden" y-axis by given it the same color
-// as the background (this could also be done by setting the weight
-// to zero)
-$graph->yaxis->SetColor('lightblue','darkblue');
-$graph->ygrid->SetColor('white');
-
-// Setup graph title ands fonts
-$graph->title->Set('Using grace = 0');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->xaxis->SetTitle('Year 2002','center');
-$graph->xaxis->SetTitleMargin(10);
-$graph->xaxis->title->SetFont(FF_FONT2,FS_BOLD);
-
-// Add some grace to the top so that the scale doesn't
-// end exactly at the max value.
-$graph->yaxis->scale->SetGrace(0);
-
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor('darkblue');
-$bplot->SetColor('darkblue');
-$bplot->SetWidth(0.5);
-$bplot->SetShadow('darkgray');
-
-// Setup the values that are displayed on top of each bar
-// Must use TTF fonts if we want text at an arbitrary angle
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,8);
-$bplot->value->SetFormat('$%d');
-$bplot->value->SetColor('darkred');
-$bplot->value->SetAngle(45);
-$graph->Add($bplot);
-
-// Finally stroke the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/grace_ex1.php b/#jpgraph/src/Examples/grace_ex1.php
deleted file mode 100644
index 7544b445..00000000
--- a/#jpgraph/src/Examples/grace_ex1.php
+++ /dev/null
@@ -1,58 +0,0 @@
-img->SetMargin(40,30,40,50);
-$graph->SetScale("textint");
-$graph->SetFrame(true,'blue',1);
-$graph->SetColor('lightblue');
-$graph->SetMarginColor('lightblue');
-
-// Setup X-axis labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->xaxis->SetColor('darkblue','black');
-
-// Setup "hidden" y-axis by given it the same color
-// as the background (this could also be done by setting the weight
-// to zero)
-$graph->yaxis->SetColor('lightblue','darkblue');
-$graph->ygrid->SetColor('white');
-
-// Setup graph title ands fonts
-$graph->title->Set('Using grace = 10%');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->xaxis->SetTitle('Year 2002','center');
-$graph->xaxis->SetTitleMargin(10);
-$graph->xaxis->title->SetFont(FF_FONT2,FS_BOLD);
-
-// Add some grace to the top so that the scale doesn't
-// end exactly at the max value.
-$graph->yaxis->scale->SetGrace(10);
-
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor('darkblue');
-$bplot->SetColor('darkblue');
-$bplot->SetWidth(0.5);
-$bplot->SetShadow('darkgray');
-
-// Setup the values that are displayed on top of each bar
-// Must use TTF fonts if we want text at an arbitrary angle
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,8);
-$bplot->value->SetFormat('$%d');
-$bplot->value->SetColor('darkred');
-$bplot->value->SetAngle(45);
-$graph->Add($bplot);
-
-// Finally stroke the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/grace_ex2.php b/#jpgraph/src/Examples/grace_ex2.php
deleted file mode 100644
index eff8b8da..00000000
--- a/#jpgraph/src/Examples/grace_ex2.php
+++ /dev/null
@@ -1,58 +0,0 @@
-img->SetMargin(40,30,40,50);
-$graph->SetScale("textint");
-$graph->SetFrame(true,'blue',1);
-$graph->SetColor('lightblue');
-$graph->SetMarginColor('lightblue');
-
-// Setup X-axis labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->xaxis->SetColor('darkblue','black');
-
-// Setup "hidden" y-axis by given it the same color
-// as the background (this could also be done by setting the weight
-// to zero)
-$graph->yaxis->SetColor('lightblue','darkblue');
-$graph->ygrid->SetColor('white');
-
-// Setup graph title ands fonts
-$graph->title->Set('Using grace = 50%');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->xaxis->SetTitle('Year 2002','center');
-$graph->xaxis->SetTitleMargin(10);
-$graph->xaxis->title->SetFont(FF_FONT2,FS_BOLD);
-
-// Add some grace to the top so that the scale doesn't
-// end exactly at the max value.
-$graph->yaxis->scale->SetGrace(50);
-
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor('darkblue');
-$bplot->SetColor('darkblue');
-$bplot->SetWidth(0.5);
-$bplot->SetShadow('darkgray');
-
-// Setup the values that are displayed on top of each bar
-// Must use TTF fonts if we want text at an arbitrary angle
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,8);
-$bplot->value->SetFormat('$%d');
-$bplot->value->SetColor('darkred');
-$bplot->value->SetAngle(45);
-$graph->Add($bplot);
-
-// Finally stroke the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/grace_ex3.php b/#jpgraph/src/Examples/grace_ex3.php
deleted file mode 100644
index 40f7daf6..00000000
--- a/#jpgraph/src/Examples/grace_ex3.php
+++ /dev/null
@@ -1,58 +0,0 @@
-img->SetMargin(40,30,40,50);
-$graph->SetScale("textint");
-$graph->SetFrame(true,'blue',1);
-$graph->SetColor('lightblue');
-$graph->SetMarginColor('lightblue');
-
-// Setup X-axis labels
-$a = $gDateLocale->GetShortMonth();
-$graph->xaxis->SetTickLabels($a);
-$graph->xaxis->SetFont(FF_FONT1);
-$graph->xaxis->SetColor('darkblue','black');
-
-// Setup "hidden" y-axis by given it the same color
-// as the background (this could also be done by setting the weight
-// to zero)
-$graph->yaxis->SetColor('lightblue','darkblue');
-$graph->ygrid->SetColor('white');
-
-// Setup graph title ands fonts
-$graph->title->Set('Using grace = 100%');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->xaxis->SetTitle('Year 2002','center');
-$graph->xaxis->SetTitleMargin(10);
-$graph->xaxis->title->SetFont(FF_FONT2,FS_BOLD);
-
-// Add some grace to the top so that the scale doesn't
-// end exactly at the max value.
-$graph->yaxis->scale->SetGrace(100);
-
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor('darkblue');
-$bplot->SetColor('darkblue');
-$bplot->SetWidth(0.5);
-$bplot->SetShadow('darkgray');
-
-// Setup the values that are displayed on top of each bar
-// Must use TTF fonts if we want text at an arbitrary angle
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,8);
-$bplot->value->SetFormat('$%d');
-$bplot->value->SetColor('darkred');
-$bplot->value->SetAngle(45);
-$graph->Add($bplot);
-
-// Finally stroke the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/gradbkgex1.php b/#jpgraph/src/Examples/gradbkgex1.php
deleted file mode 100644
index 0509e41e..00000000
--- a/#jpgraph/src/Examples/gradbkgex1.php
+++ /dev/null
@@ -1,66 +0,0 @@
-SetMarginColor('white');
-$graph->SetScale("textlin",0,50);
-$graph->SetMargin(30,50,30,30);
-
-// We must have the frame enabled to get the gradient
-// However, we don't want the frame line so we set it to
-// white color which makes it invisible.
-$graph->SetFrame(true,'white');
-
-// Setup a background gradient image
-$graph->SetBackgroundGradient('blue','navy:0.5',GRAD_HOR,BGRAD_PLOT);
-
-// Setup the tab title
-$graph->tabtitle->Set(' 3rd Division ' );
-$graph->tabtitle->SetFont(FF_ARIAL,FS_BOLD,13);
-
-// Setup x,Y grid
-$graph->xgrid->Show();
-$graph->xgrid->SetColor('gray@0.5');
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-$graph->ygrid->SetColor('gray@0.5');
-
-// Setup color for axis and labels on axis
-$graph->xaxis->SetColor('orange','black');
-$graph->yaxis->SetColor('orange','black');
-
-// Ticks on the outsid
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Setup the legend box colors and font
-$graph->legend->SetColor('white','navy');
-$graph->legend->SetFillColor('navy@0.25');
-$graph->legend->SetFont(FF_ARIAL,FS_BOLD,8);
-$graph->legend->SetShadow('darkgray@0.4',3);
-$graph->legend->SetPos(0.05,0.05,'right','top');
-
-// Create the first line
-$p1 = new LinePlot($datay1);
-$p1->SetColor("red");
-$p1->SetWeight(2);
-$p1->SetLegend('2002');
-$graph->Add($p1);
-
-// Create the second line
-$p2 = new LinePlot($datay2);
-$p2->SetColor("lightyellow");
-$p2->SetLegend('2001');
-$p2->SetWeight(2);
-$graph->Add($p2);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/gradlinefillex1.php b/#jpgraph/src/Examples/gradlinefillex1.php
deleted file mode 100644
index 06520e2e..00000000
--- a/#jpgraph/src/Examples/gradlinefillex1.php
+++ /dev/null
@@ -1,29 +0,0 @@
-SetMargin(40,40,20,30);
-$graph->SetScale("intlin");
-$graph->SetMarginColor('darkgreen@0.8');
-
-$graph->title->Set('Gradient filled line plot');
-$graph->yscale->SetAutoMin(0);
-
-// Create the line
-$p1 = new LinePlot($datay);
-$p1->SetColor("blue");
-$p1->SetWeight(0);
-$p1->SetFillGradient('red','yellow');
-
-$graph->Add($p1);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/gradlinefillex2.php b/#jpgraph/src/Examples/gradlinefillex2.php
deleted file mode 100644
index 97887445..00000000
--- a/#jpgraph/src/Examples/gradlinefillex2.php
+++ /dev/null
@@ -1,30 +0,0 @@
-SetMargin(40,40,20,30);
-$graph->SetScale("intlin");
-$graph->SetBox();
-$graph->SetMarginColor('darkgreen@0.8');
-
-// Setup a background gradient image
-$graph->SetBackgroundGradient('darkred','yellow',GRAD_HOR,BGRAD_PLOT);
-
-$graph->title->Set('Gradient filled line plot ex2');
-$graph->yscale->SetAutoMin(0);
-
-// Create the line
-$p1 = new LinePlot($datay);
-$p1->SetFillGradient('white','darkgreen');
-$graph->Add($p1);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/gradlinefillex3.php b/#jpgraph/src/Examples/gradlinefillex3.php
deleted file mode 100644
index 17b6e515..00000000
--- a/#jpgraph/src/Examples/gradlinefillex3.php
+++ /dev/null
@@ -1,30 +0,0 @@
-SetMargin(40,40,20,30);
-$graph->SetScale("intlin");
-$graph->SetBox();
-$graph->SetMarginColor('darkgreen@0.8');
-
-// Setup a background gradient image
-$graph->SetBackgroundGradient('darkred','yellow',GRAD_HOR,BGRAD_PLOT);
-
-$graph->title->Set('Gradient filled line plot ex3');
-$graph->yscale->SetAutoMin(0);
-
-// Create the line
-$p1 = new LinePlot($datay);
-$p1->SetFillGradient('white','darkgreen',4);
-$graph->Add($p1);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/gradlinefillex4.php b/#jpgraph/src/Examples/gradlinefillex4.php
deleted file mode 100644
index f921560e..00000000
--- a/#jpgraph/src/Examples/gradlinefillex4.php
+++ /dev/null
@@ -1,31 +0,0 @@
-SetMargin(40,40,20,30);
-$graph->SetScale("intlin");
-$graph->SetBox();
-$graph->SetMarginColor('darkgreen@0.8');
-
-// Setup a background gradient image
-$graph->SetBackgroundGradient('darkred','yellow',GRAD_HOR,BGRAD_PLOT);
-
-$graph->title->Set('Gradient filled line plot ex2');
-$graph->yscale->SetAutoMin(0);
-
-// Create the line
-$p1 = new LinePlot($datay);
-$p1->SetFillGradient('white','darkgreen');
-$p1->SetStepStyle();
-$graph->Add($p1);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/green_example.php b/#jpgraph/src/Examples/green_example.php
deleted file mode 100644
index 4c939d2d..00000000
--- a/#jpgraph/src/Examples/green_example.php
+++ /dev/null
@@ -1,58 +0,0 @@
- array (0 => 79, 1 => -25, 2 => -7, 3 => 85, 4 => -26, 5 => -32, ),
- 1 => array (0 => 76, 1 => 51, 2 => 86, 3 => 12, 4 => -7, 5 => 94, ),
- 2 => array (0 => 49, 1 => 38, 2 => 7, 3 => -40, 4 => 9, 5 => -7, ),
- 3 => array ( 0 => 69, 1 => 96, 2 => 49, 3 => 7, 4 => 92, 5 => -38, ),
- 4 => array ( 0 => 68, 1 => 16, 2 => 82, 3 => -49, 4 => 50, 5 => 7, ),
- 5 => array ( 0 => -37, 1 => 28, 2 => 32, 3 => 6, 4 => 13, 5 => 57, ),
- 6 => array ( 0 => 24, 1 => -11, 2 => 7, 3 => 10, 4 => 51, 5 => 51, ),
- 7 => array ( 0 => 3, 1 => -1, 2 => -12, 3 => 61, 4 => 10, 5 => 47, ),
- 8 => array ( 0 => -47, 1 => -21, 2 => 43, 3 => 53, 4 => 36, 5 => 34, ),
-);
-
-
-// Create the graph. These two calls are always required
-$graph = new Graph(400,300);
-
-$graph->SetScale("textlin");
-if ($theme) {
- $graph->SetTheme(new $theme());
-}
-$theme_class = new GreenTheme;
-$graph->SetTheme($theme_class);
-
-$plot = array();
-// Create the bar plots
-for ($i = 0; $i < 4; $i++) {
- $plot[$i] = new BarPlot($data[$i]);
- $plot[$i]->SetLegend('plot'.($i+1));
-}
-//$acc1 = new AccBarPlot(array($plot[0], $plot[1]));
-//$acc1->value->Show();
-$gbplot = new GroupBarPlot(array($plot[2], $plot[1] ));
-
-for ($i = 4; $i < 8; $i++) {
- $plot[$i] = new LinePlot($data[$i]);
- $plot[$i]->SetLegend('plot'.$i);
- $plot[$i]->value->Show();
-}
-
-$graph->Add($gbplot);
-$graph->Add($plot[4]);
-
-$title = "GreenTheme Example";
-$title = mb_convert_encoding($title,'UTF-8');
-$graph->title->Set($title);
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/groupbarex1.php b/#jpgraph/src/Examples/groupbarex1.php
deleted file mode 100644
index 40f28ee3..00000000
--- a/#jpgraph/src/Examples/groupbarex1.php
+++ /dev/null
@@ -1,44 +0,0 @@
-SetScale("textlin");
-$graph->SetShadow();
-$graph->img->SetMargin(40,30,40,40);
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-$graph->xaxis->title->Set('Year 2002');
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->title->Set('Group bar plot');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$bplot1 = new BarPlot($datay1);
-$bplot2 = new BarPlot($datay2);
-$bplot3 = new BarPlot($datay3);
-
-$bplot1->SetFillColor("orange");
-$bplot2->SetFillColor("brown");
-$bplot3->SetFillColor("darkgreen");
-
-$bplot1->SetShadow();
-$bplot2->SetShadow();
-$bplot3->SetShadow();
-
-$bplot1->SetShadow();
-$bplot2->SetShadow();
-$bplot3->SetShadow();
-
-$gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3));
-$gbarplot->SetWidth(0.6);
-$graph->Add($gbarplot);
-
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/heat1.jpg b/#jpgraph/src/Examples/heat1.jpg
deleted file mode 100644
index 07f04d76..00000000
Binary files a/#jpgraph/src/Examples/heat1.jpg and /dev/null differ
diff --git a/#jpgraph/src/Examples/horizbarex1.php b/#jpgraph/src/Examples/horizbarex1.php
deleted file mode 100644
index bc5055fc..00000000
--- a/#jpgraph/src/Examples/horizbarex1.php
+++ /dev/null
@@ -1,63 +0,0 @@
-SetScale('textlin');
-
-// Rotate graph 90 degrees and set margin
-$graph->Set90AndMargin(50,20,50,30);
-
-// Nice shadow
-$graph->SetShadow();
-
-// Setup title
-$graph->title->Set('Horizontal bar graph ex 1');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,14);
-
-// Setup X-axis
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,12);
-
-// Some extra margin looks nicer
-$graph->xaxis->SetLabelMargin(10);
-
-// Label align for X-axis
-$graph->xaxis->SetLabelAlign('right','center');
-
-// Add some grace to y-axis so the bars doesn't go
-// all the way to the end of the plot area
-$graph->yaxis->scale->SetGrace(20);
-
-// We don't want to display Y-axis
-$graph->yaxis->Hide();
-
-// Now create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor('orange');
-$bplot->SetShadow();
-
-//You can change the width of the bars if you like
-//$bplot->SetWidth(0.5);
-
-// We want to display the value of each bar at the top
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_BOLD,12);
-$bplot->value->SetAlign('left','center');
-$bplot->value->SetColor('black','darkred');
-$bplot->value->SetFormat('%.1f mkr');
-
-// Add the bar to the graph
-$graph->Add($bplot);
-
-// .. and stroke the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/horizbarex2.php b/#jpgraph/src/Examples/horizbarex2.php
deleted file mode 100644
index d50bb7d4..00000000
--- a/#jpgraph/src/Examples/horizbarex2.php
+++ /dev/null
@@ -1,70 +0,0 @@
-SetScale("textlin");
-
-$top = 80;
-$bottom = 30;
-$left = 50;
-$right = 30;
-$graph->Set90AndMargin($left,$right,$top,$bottom);
-
-// Nice shadow
-$graph->SetShadow();
-
-// Setup title
-$graph->title->Set("Horizontal bar graph ex 2");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,14);
-$graph->subtitle->Set("(Axis at top)");
-
-// Setup X-axis
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,12);
-
-// Some extra margin looks nicer
-$graph->xaxis->SetLabelMargin(5);
-
-// Label align for X-axis
-$graph->xaxis->SetLabelAlign('right','center');
-
-// Add some grace to y-axis so the bars doesn't go
-// all the way to the end of the plot area
-$graph->yaxis->scale->SetGrace(20);
-$graph->yaxis->SetLabelAlign('center','bottom');
-$graph->yaxis->SetLabelAngle(45);
-$graph->yaxis->SetLabelFormat('%d');
-$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,12);
-
-// We don't want to display Y-axis
-//$graph->yaxis->Hide();
-
-// Now create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-$bplot->SetShadow();
-
-//You can change the width of the bars if you like
-//$bplot->SetWidth(0.5);
-
-// We want to display the value of each bar at the top
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_BOLD,12);
-$bplot->value->SetAlign('left','center');
-$bplot->value->SetColor("black","darkred");
-$bplot->value->SetFormat('%.1f mkr');
-
-// Add the bar to the graph
-$graph->Add($bplot);
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/horizbarex3.php b/#jpgraph/src/Examples/horizbarex3.php
deleted file mode 100644
index c0d5a49f..00000000
--- a/#jpgraph/src/Examples/horizbarex3.php
+++ /dev/null
@@ -1,99 +0,0 @@
-SetScale("textlin");
-
-$top = 50;
-$bottom = 80;
-$left = 50;
-$right = 20;
-$graph->Set90AndMargin($left,$right,$top,$bottom);
-
-$graph->xaxis->SetPos('min');
-
-// Nice shadow
-$graph->SetShadow();
-
-// Setup title
-$graph->title->Set("Horizontal bar graph ex 3");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,14);
-$graph->subtitle->Set("(Axis at bottom)");
-
-// Setup X-axis
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetFont(FF_FONT2,FS_BOLD,12);
-
-// Some extra margin looks nicer
-$graph->xaxis->SetLabelMargin(5);
-
-// Label align for X-axis
-$graph->xaxis->SetLabelAlign('right','center');
-
-// Add some grace to y-axis so the bars doesn't go
-// all the way to the end of the plot area
-$graph->yaxis->scale->SetGrace(20);
-
-// Setup the Y-axis to be displayed in the bottom of the
-// graph. We also finetune the exact layout of the title,
-// ticks and labels to make them look nice.
-$graph->yaxis->SetPos('max');
-
-// First make the labels look right
-$graph->yaxis->SetLabelAlign('center','top');
-$graph->yaxis->SetLabelFormat('%d');
-$graph->yaxis->SetLabelSide(SIDE_RIGHT);
-
-// The fix the tick marks
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Finally setup the title
-$graph->yaxis->SetTitleSide(SIDE_RIGHT);
-$graph->yaxis->SetTitleMargin(35);
-
-// To align the title to the right use :
-$graph->yaxis->SetTitle('Turnaround 2002','high');
-$graph->yaxis->title->Align('right');
-
-// To center the title use :
-//$graph->yaxis->SetTitle('Turnaround 2002','center');
-//$graph->yaxis->title->Align('center');
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->yaxis->title->SetAngle(0);
-
-$graph->yaxis->SetFont(FF_FONT2,FS_NORMAL);
-// If you want the labels at an angle other than 0 or 90
-// you need to use TTF fonts
-//$graph->yaxis->SetLabelAngle(0);
-
-// Now create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-$bplot->SetShadow();
-
-//You can change the width of the bars if you like
-//$bplot->SetWidth(0.5);
-
-// We want to display the value of each bar at the top
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_BOLD,12);
-$bplot->value->SetAlign('left','center');
-$bplot->value->SetColor("black","darkred");
-$bplot->value->SetFormat('%.1f mkr');
-
-// Add the bar to the graph
-$graph->Add($bplot);
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/horizbarex4.php b/#jpgraph/src/Examples/horizbarex4.php
deleted file mode 100644
index 5f51be48..00000000
--- a/#jpgraph/src/Examples/horizbarex4.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetScale('textlin');
-
-$top = 60;
-$bottom = 30;
-$left = 80;
-$right = 30;
-$graph->Set90AndMargin($left,$right,$top,$bottom);
-
-// Nice shadow
-$graph->SetShadow();
-
-// Setup labels
-$lbl = array("Andrew\nTait","Thomas\nAnderssen","Kevin\nSpacey","Nick\nDavidsson",
-"David\nLindquist","Jason\nTait","Lorin\nPersson");
-$graph->xaxis->SetTickLabels($lbl);
-
-// Label align for X-axis
-$graph->xaxis->SetLabelAlign('right','center','right');
-
-// Label align for Y-axis
-$graph->yaxis->SetLabelAlign('center','bottom');
-
-// Titles
-$graph->title->Set('Number of incidents');
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor('orange');
-$bplot->SetWidth(0.5);
-$bplot->SetYMin(1990);
-
-$graph->Add($bplot);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/horizbarex6.php b/#jpgraph/src/Examples/horizbarex6.php
deleted file mode 100644
index 8ab4cbc6..00000000
--- a/#jpgraph/src/Examples/horizbarex6.php
+++ /dev/null
@@ -1,83 +0,0 @@
-SetScale("textlin");
-
-// No frame around the image
-$graph->SetFrame(false);
-
-// Rotate graph 90 degrees and set margin
-$graph->Set90AndMargin(100,20,50,30);
-
-// Set white margin color
-$graph->SetMarginColor('white');
-
-// Use a box around the plot area
-$graph->SetBox();
-
-// Use a gradient to fill the plot area
-$graph->SetBackgroundGradient('white','lightblue',GRAD_HOR,BGRAD_PLOT);
-
-// Setup title
-$graph->title->Set("Graphic card performance");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,11);
-$graph->subtitle->Set("(Non optimized)");
-
-// Setup X-axis
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,8);
-
-// Some extra margin looks nicer
-$graph->xaxis->SetLabelMargin(10);
-
-// Label align for X-axis
-$graph->xaxis->SetLabelAlign('right','center');
-
-// Add some grace to y-axis so the bars doesn't go
-// all the way to the end of the plot area
-$graph->yaxis->scale->SetGrace(20);
-
-// We don't want to display Y-axis
-$graph->yaxis->Hide();
-
-// Now create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetShadow();
-
-//You can change the width of the bars if you like
-//$bplot->SetWidth(0.5);
-
-// Set gradient fill for bars
-$bplot->SetFillGradient('darkred','yellow',GRAD_HOR);
-
-// We want to display the value of each bar at the top
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_BOLD,10);
-//$bplot->value->SetAlign('left','center');
-$bplot->value->SetColor("white");
-$bplot->value->SetFormat('%.1f');
-$bplot->SetValuePos('max');
-
-// Add the bar to the graph
-$graph->Add($bplot);
-
-// Add some explanation text
-$txt = new Text('Note: Higher value is better.');
-$txt->SetPos(190,399,'center','bottom');
-$txt->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->Add($txt);
-
-// .. and stroke the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/icon.jpg b/#jpgraph/src/Examples/icon.jpg
deleted file mode 100644
index dc3b3029..00000000
Binary files a/#jpgraph/src/Examples/icon.jpg and /dev/null differ
diff --git a/#jpgraph/src/Examples/imgmarkercsimex1.php b/#jpgraph/src/Examples/imgmarkercsimex1.php
deleted file mode 100644
index 2c91a0dd..00000000
--- a/#jpgraph/src/Examples/imgmarkercsimex1.php
+++ /dev/null
@@ -1,55 +0,0 @@
-SetMarginColor('white');
-$graph->SetScale("textlin");
-$graph->SetFrame(false);
-$graph->SetMargin(30,5,25,20);
-
-// Setup the tab
-$graph->tabtitle->Set(' Year 2003 ' );
-$graph->tabtitle->SetFont(FF_ARIAL,FS_BOLD,13);
-$graph->tabtitle->SetColor('darkred','#E1E1FF');
-
-// Enable X-grid as well
-$graph->xgrid->Show();
-
-// Use months as X-labels
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-// Create the plot
-$p1 = new LinePlot($datay1);
-$p1->SetColor("navy");
-
-$p1->SetCSIMTargets(array('#1','#2','#3','#4','#5'));
-
-// Use an image of favourite car as
-$p1->mark->SetType(MARK_IMG,'saab_95.jpg',0.5);
-//$p1->mark->SetType(MARK_SQUARE);
-
-// Displayes value on top of marker image
-$p1->value->SetFormat('%d mil');
-$p1->value->Show();
-$p1->value->SetColor('darkred');
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,10);
-// Increase the margin so that the value is printed avove tje
-// img marker
-$p1->value->SetMargin(14);
-
-// Incent the X-scale so the first and last point doesn't
-// fall on the edges
-$p1->SetCenter();
-
-$graph->Add($p1);
-
-$graph->StrokeCSIM();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/imgmarkerex1.php b/#jpgraph/src/Examples/imgmarkerex1.php
deleted file mode 100644
index 9f5e8ce6..00000000
--- a/#jpgraph/src/Examples/imgmarkerex1.php
+++ /dev/null
@@ -1,52 +0,0 @@
-SetMarginColor('white');
-$graph->SetScale("textlin");
-$graph->SetFrame(false);
-$graph->SetMargin(30,5,25,20);
-
-// Setup the tab
-$graph->tabtitle->Set(' Year 2003 ' );
-$graph->tabtitle->SetFont(FF_ARIAL,FS_BOLD,13);
-$graph->tabtitle->SetColor('darkred','#E1E1FF');
-
-// Enable X-grid as well
-$graph->xgrid->Show();
-
-// Use months as X-labels
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-// Create the plot
-$p1 = new LinePlot($datay1);
-$p1->SetColor("navy");
-
-// Use an image of favourite car as marker
-$p1->mark->SetType(MARK_IMG,'saab_95.jpg',0.5);
-
-// Displayes value on top of marker image
-$p1->value->SetFormat('%d mil');
-$p1->value->Show();
-$p1->value->SetColor('darkred');
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,10);
-// Increase the margin so that the value is printed avove tje
-// img marker
-$p1->value->SetMargin(14);
-
-// Incent the X-scale so the first and last point doesn't
-// fall on the edges
-$p1->SetCenter();
-
-$graph->Add($p1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/impulsex1.php b/#jpgraph/src/Examples/impulsex1.php
deleted file mode 100644
index ff893833..00000000
--- a/#jpgraph/src/Examples/impulsex1.php
+++ /dev/null
@@ -1,23 +0,0 @@
-SetScale("textlin");
-
-$graph->SetShadow();
-$graph->img->SetMargin(40,40,40,40);
-
-$graph->title->Set("Simple mpuls plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$sp1 = new ScatterPlot($datay);
-$sp1->mark->SetType(MARK_SQUARE);
-$sp1->SetImpuls();
-
-$graph->Add($sp1);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/impulsex2.php b/#jpgraph/src/Examples/impulsex2.php
deleted file mode 100644
index 8ea45973..00000000
--- a/#jpgraph/src/Examples/impulsex2.php
+++ /dev/null
@@ -1,29 +0,0 @@
-SetScale("textlin");
-
-$graph->SetShadow();
-$graph->img->SetMargin(40,40,40,40);
-
-$graph->title->Set("Impuls plot, variant 2");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->Set("Impuls respons");
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$sp1 = new ScatterPlot($datay);//,$datax);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-$sp1->mark->SetFillColor("red");
-$sp1->mark->SetWidth(4);
-$sp1->SetImpuls();
-$sp1->SetColor("blue");
-$sp1->SetWeight(3);
-
-$graph->Add($sp1);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/impulsex3.php b/#jpgraph/src/Examples/impulsex3.php
deleted file mode 100644
index f7b5182e..00000000
--- a/#jpgraph/src/Examples/impulsex3.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetScale("intlin");
-$graph->SetShadow();
-$graph->SetBox();
-
-$graph->title->Set("Impuls Example 3");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Set format callback for labels
-$graph->yaxis->SetLabelFormatCallback("mycallback");
-
-// Set X-axis at the minimum value of Y-axis (default will be at 0)
-$graph->xaxis->SetPos("min"); // "min" will position the x-axis at the minimum value of the Y-axis
-
-// Extend the margin for the labels on the Y-axis and reverse the direction
-// of the ticks on the Y-axis
-$graph->yaxis->SetLabelMargin(12);
-$graph->xaxis->SetLabelMargin(6);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-
-// Create a new impuls type scatter plot
-$sp1 = new ScatterPlot($datay);
-$sp1->mark->SetType(MARK_SQUARE);
-$sp1->mark->SetFillColor("red");
-$sp1->SetImpuls();
-$sp1->SetColor("blue");
-$sp1->SetWeight(1);
-$sp1->mark->SetWidth(3);
-
-$graph->Add($sp1);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/impulsex4.php b/#jpgraph/src/Examples/impulsex4.php
deleted file mode 100644
index ac497ade..00000000
--- a/#jpgraph/src/Examples/impulsex4.php
+++ /dev/null
@@ -1,76 +0,0 @@
-SetScale("intlin");
-
-$graph->SetShadow();
-$graph->SetBox();
-$graph->title->Set("Impuls Example 4");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Set some other color then the boring default
-$graph->SetColor("lightyellow");
-$graph->SetMarginColor("khaki");
-
-// Set legend box specification
-$graph->legend->SetFillColor("white");
-$graph->legend->SetLineWeight(2);
-
-// Set X-axis at the minimum value of Y-axis (default will be at 0)
-$graph->xaxis->SetPos("min"); // "min" will position the x-axis at the minimum value of the Y-axis
-
-// Extend the margin for the labels on the Y-axis and reverse the direction
-// of the ticks on the Y-axis
-$graph->yaxis->SetLabelMargin(12);
-$graph->xaxis->SetLabelMargin(6);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-
-// Add mark graph with static lines
-$line = new PlotLine(HORIZONTAL,0,"black",2);
-$graph->AddLine($line);
-
-// Create a new impuls type scatter plot
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->mark->SetType(MARK_SQUARE);
-$sp1->mark->SetFillColor("red");
-$sp1->mark->SetWidth(3);
-
-$sp1->SetImpuls();
-$sp1->SetColor("blue");
-$sp1->SetWeight(1);
-$sp1->SetLegend("Non-causal signal");
-
-$graph->Add($sp1);
-
-// Create the envelope plot
-$ep1 = new LinePlot($datayenv,$datax);
-$ep1->SetStyle("dotted");
-$ep1->SetLegend("Positive envelope");
-
-$graph->Add($ep1);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/index.html b/#jpgraph/src/Examples/index.html
deleted file mode 100644
index 6731a850..00000000
--- a/#jpgraph/src/Examples/index.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
Examples of odometers
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/#jpgraph/src/Examples/interpolation-growth-log.php b/#jpgraph/src/Examples/interpolation-growth-log.php
deleted file mode 100644
index c9ecd007..00000000
--- a/#jpgraph/src/Examples/interpolation-growth-log.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetScale('intlog');
-$graph->SetMargin(50,50,20,30);
-$graph->SetFrame(false);
-$graph->SetBox(true,'black',2);
-$graph->SetMarginColor('white');
-$graph->SetColor('lightyellow@0.7');
-
-$graph->title->Set('Interpolation growth for size 10x10');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->xaxis->SetTitle('Interpolation factor','center');
-$graph->xaxis->SetTitleMargin(10);
-
-$graph->SetAxisStyle(AXSTYLE_YBOXIN);
-$graph->xgrid->Show();
-
-$lp1 = new LinePlot($ydata,$xdata);
-$lp1->SetColor('darkred');
-$lp1->SetWeight(3);
-$graph->Add($lp1);
-
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/interpolation-growth.php b/#jpgraph/src/Examples/interpolation-growth.php
deleted file mode 100644
index e1fec180..00000000
--- a/#jpgraph/src/Examples/interpolation-growth.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetScale('intint');
-$graph->SetMargin(50,50,20,30);
-$graph->SetFrame(false);
-$graph->SetBox(true,'black',2);
-$graph->SetMarginColor('white');
-$graph->SetColor('lightyellow@0.7');
-
-$graph->title->Set('Interpolation growth for size 10x10');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->xaxis->SetTitle('Interpolation factor','center');
-$graph->xaxis->SetTitleMargin(10);
-
-$graph->SetAxisStyle(AXSTYLE_YBOXIN);
-$graph->xgrid->Show();
-
-$lp1 = new LinePlot($ydata,$xdata);
-$lp1->SetColor('darkred');
-$lp1->SetWeight(3);
-$graph->Add($lp1);
-
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/inyaxisex1.php b/#jpgraph/src/Examples/inyaxisex1.php
deleted file mode 100644
index d6e3d416..00000000
--- a/#jpgraph/src/Examples/inyaxisex1.php
+++ /dev/null
@@ -1,51 +0,0 @@
-SetScale("linlin");
-$graph->img->SetMargin(50,50,60,40);
-$graph->SetMarginColor('darkblue');
-$graph->SetColor('darkblue');
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-
-$graph->title->Set("Depth curve. Dive #2");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->title->SetColor("white");
-
-$graph->subtitle->Set("(Negated Y-axis)");
-$graph->subtitle->SetFont(FF_FONT1,FS_NORMAL);
-$graph->subtitle->SetColor("white");
-
-// Setup axis
-$graph->yaxis->SetLabelFormatCallback("_cb_negate");
-$graph->xaxis->SetColor("lightblue","white");
-$graph->yaxis->SetColor("lightblue","white");
-$graph->ygrid->SetColor("blue");
-
-
-$lp1 = new LinePlot($ydata);
-$lp1->SetColor("yellow");
-$lp1->SetWeight(2);
-
-
-$graph->Add($lp1);
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/inyaxisex2.php b/#jpgraph/src/Examples/inyaxisex2.php
deleted file mode 100644
index 5e19d4aa..00000000
--- a/#jpgraph/src/Examples/inyaxisex2.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetScale("linlin");
-$graph->img->SetMargin(50,50,60,40);
-$graph->SetMarginColor('darkblue');
-$graph->SetColor('darkblue');
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-$graph->SetBackgroundImage("blueblack400x300grad.png",1);
-//$graph->SetBackgroundImage("lightbluedarkblue400x300grad.png",1);
-
-$graph->title->Set("Depth curve. Dive #2");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->title->SetColor("white");
-
-$graph->subtitle->Set("(Negated Y-axis)");
-$graph->subtitle->SetFont(FF_FONT1,FS_NORMAL);
-$graph->subtitle->SetColor("white");
-
-// Setup axis
-$graph->yaxis->SetLabelFormatCallback("_cb_negate");
-$graph->xaxis->SetColor("lightblue","white");
-$graph->yaxis->SetColor("lightblue","white");
-$graph->ygrid->SetColor("blue");
-
-
-$lp1 = new LinePlot($ydata);
-$lp1->SetColor("yellow");
-$lp1->SetWeight(2);
-
-
-$graph->Add($lp1);
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/inyaxisex3.php b/#jpgraph/src/Examples/inyaxisex3.php
deleted file mode 100644
index e09567ef..00000000
--- a/#jpgraph/src/Examples/inyaxisex3.php
+++ /dev/null
@@ -1,69 +0,0 @@
-SetScale("linlin");
-$graph->SetY2Scale("lin");
-$graph->SetMargin(50,50,60,40);
-$graph->SetMarginColor('darkblue');
-$graph->SetColor('darkblue');
-
-// Setup titles
-$graph->title->Set("Inverting both Y-axis");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->title->SetColor("white");
-
-$graph->subtitle->Set("(Negated Y & Y2 axis)");
-$graph->subtitle->SetFont(FF_FONT1,FS_NORMAL);
-$graph->subtitle->SetColor("white");
-
-// Setup axis
-$graph->yaxis->SetLabelFormatCallback("_cb_negate");
-$graph->xaxis->SetColor("lightblue","white");
-$graph->yaxis->SetColor("lightblue","white");
-$graph->ygrid->SetColor("blue");
-
-// Setup Y2 axis
-$graph->y2axis->SetLabelFormatCallback("_cb_negate");
-$graph->y2axis->SetColor("darkred","white");
-$graph->y2scale->SetAutoMax(0); // To make sure it starts with 0
-
-// Setup plot 1
-$lp1 = new LinePlot($ydata);
-$lp1->SetColor("yellow");
-$lp1->SetWeight(2);
-$graph->Add($lp1);
-
-// Setup plot 2
-$lp2 = new LinePlot($y2data);
-$lp2->SetColor("darkred");
-$lp2->SetWeight(2);
-$graph->AddY2($lp2);
-
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/ironrod.jpg b/#jpgraph/src/Examples/ironrod.jpg
deleted file mode 100644
index 0b9e8d40..00000000
Binary files a/#jpgraph/src/Examples/ironrod.jpg and /dev/null differ
diff --git a/#jpgraph/src/Examples/jpglogo.jpg b/#jpgraph/src/Examples/jpglogo.jpg
deleted file mode 100644
index a7f71211..00000000
Binary files a/#jpgraph/src/Examples/jpglogo.jpg and /dev/null differ
diff --git a/#jpgraph/src/Examples/ledex1.php b/#jpgraph/src/Examples/ledex1.php
deleted file mode 100644
index 8d61f937..00000000
--- a/#jpgraph/src/Examples/ledex1.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_GREEN);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex10.php b/#jpgraph/src/Examples/ledex10.php
deleted file mode 100644
index 3aa375f9..00000000
--- a/#jpgraph/src/Examples/ledex10.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_KHAKI);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex11.php b/#jpgraph/src/Examples/ledex11.php
deleted file mode 100644
index 857faa07..00000000
--- a/#jpgraph/src/Examples/ledex11.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_OLIVE);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex12.php b/#jpgraph/src/Examples/ledex12.php
deleted file mode 100644
index 7756ea13..00000000
--- a/#jpgraph/src/Examples/ledex12.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_LIMEGREEN);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex13.php b/#jpgraph/src/Examples/ledex13.php
deleted file mode 100644
index add394d3..00000000
--- a/#jpgraph/src/Examples/ledex13.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_FORESTGREEN);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex14.php b/#jpgraph/src/Examples/ledex14.php
deleted file mode 100644
index 7a505999..00000000
--- a/#jpgraph/src/Examples/ledex14.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_TEAL);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex15.php b/#jpgraph/src/Examples/ledex15.php
deleted file mode 100644
index 6a5bb1f6..00000000
--- a/#jpgraph/src/Examples/ledex15.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_STEELBLUE);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex16.php b/#jpgraph/src/Examples/ledex16.php
deleted file mode 100644
index 08ab7312..00000000
--- a/#jpgraph/src/Examples/ledex16.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_NAVY);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex17.php b/#jpgraph/src/Examples/ledex17.php
deleted file mode 100644
index 34f18cd1..00000000
--- a/#jpgraph/src/Examples/ledex17.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_INVERTGRAY);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex2.php b/#jpgraph/src/Examples/ledex2.php
deleted file mode 100644
index bd196d38..00000000
--- a/#jpgraph/src/Examples/ledex2.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_RED);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex3.php b/#jpgraph/src/Examples/ledex3.php
deleted file mode 100644
index 0d81b3d5..00000000
--- a/#jpgraph/src/Examples/ledex3.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_YELLOW);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex4.1.php b/#jpgraph/src/Examples/ledex4.1.php
deleted file mode 100644
index 81a9d1ff..00000000
--- a/#jpgraph/src/Examples/ledex4.1.php
+++ /dev/null
@@ -1,13 +0,0 @@
-SetSupersampling(2);
-$led->StrokeNumber('123.',LEDC_RED);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex4.2.php b/#jpgraph/src/Examples/ledex4.2.php
deleted file mode 100644
index 0a25bc02..00000000
--- a/#jpgraph/src/Examples/ledex4.2.php
+++ /dev/null
@@ -1,13 +0,0 @@
-SetSupersampling(4);
-$led->StrokeNumber('123.',LEDC_RED);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex4.php b/#jpgraph/src/Examples/ledex4.php
deleted file mode 100644
index d8782e25..00000000
--- a/#jpgraph/src/Examples/ledex4.php
+++ /dev/null
@@ -1,13 +0,0 @@
-SetSupersampling(1);
-$led->StrokeNumber('123.',LEDC_RED);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex5.php b/#jpgraph/src/Examples/ledex5.php
deleted file mode 100644
index 5526063c..00000000
--- a/#jpgraph/src/Examples/ledex5.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_BLUE);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex6.php b/#jpgraph/src/Examples/ledex6.php
deleted file mode 100644
index eb8c03ba..00000000
--- a/#jpgraph/src/Examples/ledex6.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_GRAY);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex7.php b/#jpgraph/src/Examples/ledex7.php
deleted file mode 100644
index da6c656b..00000000
--- a/#jpgraph/src/Examples/ledex7.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_CHOCOLATE);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex8.php b/#jpgraph/src/Examples/ledex8.php
deleted file mode 100644
index 2075e261..00000000
--- a/#jpgraph/src/Examples/ledex8.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_PERU);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex9.php b/#jpgraph/src/Examples/ledex9.php
deleted file mode 100644
index 82837d1d..00000000
--- a/#jpgraph/src/Examples/ledex9.php
+++ /dev/null
@@ -1,12 +0,0 @@
-StrokeNumber('0123456789. ABCDEFGHIJKL',LEDC_GOLDENROD);
-
-
-
-?>
diff --git a/#jpgraph/src/Examples/ledex_cyrillic.php b/#jpgraph/src/Examples/ledex_cyrillic.php
deleted file mode 100644
index b85f9d31..00000000
--- a/#jpgraph/src/Examples/ledex_cyrillic.php
+++ /dev/null
@@ -1,27 +0,0 @@
-SetSupersampling(2);
-$text = 'А'.
- 'Б'.
- 'В'.
- 'Г'.
- 'Д'.
- 'Е'.
- 'Ё'.
- 'З'.
- 'И'.
- 'Й'.
- 'К'.
- 'Л'.
- 'М'.
- 'Н'.
- 'О'.
- 'П';
-$led->StrokeNumber($text, LEDC_RED);
-
-?>
diff --git a/#jpgraph/src/Examples/ledex_cyrillic2.php b/#jpgraph/src/Examples/ledex_cyrillic2.php
deleted file mode 100644
index fb007144..00000000
--- a/#jpgraph/src/Examples/ledex_cyrillic2.php
+++ /dev/null
@@ -1,27 +0,0 @@
-SetSupersampling(2);
-$text = 'Р'.
- 'С'.
- 'Т'.
- 'У'.
- 'Ф'.
- 'Х'.
- 'Ц'.
- 'Ч'.
- 'Ш'.
- 'Щ'.
- 'Ъ'.
- 'Ы'.
- 'Ь'.
- 'Э'.
- 'Ю'.
- 'Я';
-$led->StrokeNumber($text, LEDC_RED);
-
-?>
diff --git a/#jpgraph/src/Examples/lightbluedarkblue400x300grad.png b/#jpgraph/src/Examples/lightbluedarkblue400x300grad.png
deleted file mode 100644
index 86092ecf..00000000
Binary files a/#jpgraph/src/Examples/lightbluedarkblue400x300grad.png and /dev/null differ
diff --git a/#jpgraph/src/Examples/linebarcentex1.php b/#jpgraph/src/Examples/linebarcentex1.php
deleted file mode 100644
index 1b5e1888..00000000
--- a/#jpgraph/src/Examples/linebarcentex1.php
+++ /dev/null
@@ -1,49 +0,0 @@
-GetShortMonth();
-
-// Create the graph.
-$graph = new Graph(400,200);
-$graph->SetScale("textlin");
-$graph->SetMargin(40,130,20,40);
-$graph->SetShadow();
-$graph->xaxis->SetTickLabels($datax);
-
-// Create the linear error plot
-$l1plot=new LinePlot($l1datay);
-$l1plot->SetColor("red");
-$l1plot->SetWeight(2);
-$l1plot->SetLegend("Prediction");
-
-//Center the line plot in the center of the bars
-$l1plot->SetBarCenter();
-
-
-// Create the bar plot
-$bplot = new BarPlot($l2datay);
-$bplot->SetFillColor("orange");
-$bplot->SetLegend("Result");
-
-// Add the plots to t'he graph
-$graph->Add($bplot);
-$graph->Add($l1plot);
-
-
-$graph->title->Set("Adding a line plot to a bar graph v1");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/linebarex1.php b/#jpgraph/src/Examples/linebarex1.php
deleted file mode 100644
index 202491d9..00000000
--- a/#jpgraph/src/Examples/linebarex1.php
+++ /dev/null
@@ -1,75 +0,0 @@
-SetBackgroundImage("tiger_bkg.png",BGIMG_FILLFRAME);
-$graph->SetShadow();
-
-// Use an integer X-scale
-$graph->SetScale("textlin");
-
-// Set title and subtitle
-$graph->title->Set("Combined bar and line plot");
-$graph->subtitle->Set("100 data points, X-Scale: 'text'");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Make the margin around the plot a little bit bigger
-// then default
-$graph->img->SetMargin(40,140,40,80);
-
-// Slightly adjust the legend from it's default position in the
-// top right corner to middle right side
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Display every 10:th datalabel
-$graph->xaxis->SetTextTickInterval(6);
-$graph->xaxis->SetTextLabelInterval(2);
-$graph->xaxis->SetTickLabels($databarx);
-$graph->xaxis->SetLabelAngle(90);
-
-// Create a red line plot
-$p1 = new LinePlot($datay);
-$p1->SetColor("red");
-$p1->SetLegend("Pressure");
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend("Temperature");
-$b1->SetAbsWidth(6);
-$b1->SetShadow();
-
-// The order the plots are added determines who's ontop
-$graph->Add($p1);
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/linebarex2.php b/#jpgraph/src/Examples/linebarex2.php
deleted file mode 100644
index efae8e2d..00000000
--- a/#jpgraph/src/Examples/linebarex2.php
+++ /dev/null
@@ -1,59 +0,0 @@
-SetBackgroundImage("tiger_bkg.png",BGIMG_FILLFRAME);
-$graph->SetShadow();
-
-// Use an integer X-scale
-$graph->SetScale("intlin");
-
-// Set title and subtitle
-$graph->title->Set("Combined bar and line plot");
-$graph->subtitle->Set("(\"left\" aligned bars)");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Make the margin around the plot a little bit bigger
-// then default
-$graph->img->SetMargin(40,120,40,40);
-
-// Slightly adjust the legend from it's default position in the
-// top right corner to middle right side
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Create a red line plot
-$p1 = new LinePlot($datay,$datax);
-$p1->SetColor("red");
-$p1->SetLegend("Status one");
-$graph->Add($p1);
-
-// Create the bar plot
-$b1 = new BarPlot($databary,$databarx);
-$b1->SetLegend("Status two");
-$b1->SetAlign("left");
-$b1->SetShadow();
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/linebarex3.php b/#jpgraph/src/Examples/linebarex3.php
deleted file mode 100644
index faff220d..00000000
--- a/#jpgraph/src/Examples/linebarex3.php
+++ /dev/null
@@ -1,52 +0,0 @@
-img->SetMargin(40,180,40,40);
-$graph->SetBackgroundImage("tiger_bkg.png",BGIMG_FILLFRAME);
-
-//$graph->img->SetAntiAliasing();
-
-$graph->SetScale("intlin");
-$graph->SetShadow();
-$graph->title->Set("Combined bar and line plot");
-$graph->subtitle->Set("(\"center\" aligned bars)");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Slightly adjust the legend from it's default position in the
-// top right corner.
-$graph->legend->Pos(0.05,0.5,"right","center");
-
-// Create the first line
-
-$p1 = new LinePlot($datay,$datax);
-$p1->SetWeight(1);
-$p1->SetColor("red");
-$p1->SetLegend("Triumph Tiger -98");
-$graph->Add($p1);
-
-$b1 = new BarPlot($databary,$databarx);
-$b1->SetAbsWidth(10);
-$b1->SetAlign("center");
-$b1->SetShadow();
-$graph->Add($b1);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/linegraceex.php b/#jpgraph/src/Examples/linegraceex.php
deleted file mode 100644
index e64cdc4f..00000000
--- a/#jpgraph/src/Examples/linegraceex.php
+++ /dev/null
@@ -1,31 +0,0 @@
-img->SetMargin(40,40,40,40);
-
-$graph->img->SetAntiAliasing();
-$graph->SetScale("textlin");
-$graph->SetShadow();
-$graph->title->Set("Example of 10% top/bottom grace");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Add 10% grace to top and bottom of plot
-$graph->yscale->SetGrace(10,10);
-
-$p1 = new LinePlot($datay);
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$p1->SetColor("blue");
-$p1->SetCenter();
-$graph->Add($p1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/lineiconex1.php b/#jpgraph/src/Examples/lineiconex1.php
deleted file mode 100644
index 53f2b00f..00000000
--- a/#jpgraph/src/Examples/lineiconex1.php
+++ /dev/null
@@ -1,49 +0,0 @@
-SetMargin(40,40,20,30);
-$graph->SetScale("textlin");
-
-$graph->title->Set('Adding an icon ("tux") in the background');
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-//$graph->SetBackgroundGradient('red','blue');
-
-$graph->xaxis->SetPos('min');
-
-$p1 = new LinePlot($datay);
-$p1->SetColor("blue");
-$p1->SetFillGradient('yellow@0.4','red@0.4');
-
-$p2 = new LinePlot($datay2);
-$p2->SetColor("black");
-$p2->SetFillGradient('green@0.4','white');
-
-$p3 = new LinePlot($datay3);
-$p3->SetColor("blue");
-$p3->SetFillGradient('navy@0.4','white@0.4');
-
-$graph->Add($p1);
-$graph->Add($p2);
-$graph->Add($p3);
-
-$icon = new IconPlot('penguin.png',0.2,0.3,1,30);
-$icon->SetAnchor('center','center');
-$graph->Add($icon);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/lineiconex2.php b/#jpgraph/src/Examples/lineiconex2.php
deleted file mode 100644
index d16ab8b7..00000000
--- a/#jpgraph/src/Examples/lineiconex2.php
+++ /dev/null
@@ -1,32 +0,0 @@
-SetMargin(40,40,20,30);
-$graph->SetScale("textlin");
-
-$graph->title->Set('Adding a country flag as a an icon');
-
-$p1 = new LinePlot($datay);
-$p1->SetColor("blue");
-$p1->SetFillGradient('yellow@0.4','red@0.4');
-
-$graph->Add($p1);
-
-$icon = new IconPlot();
-$icon->SetCountryFlag('iceland',50,30,1.5,40,3);
-$icon->SetAnchor('left','top');
-$graph->Add($icon);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/lineimagefillex1.php b/#jpgraph/src/Examples/lineimagefillex1.php
deleted file mode 100644
index d2fb60ae..00000000
--- a/#jpgraph/src/Examples/lineimagefillex1.php
+++ /dev/null
@@ -1,41 +0,0 @@
-title->Set('Education growth');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->SetScale('intlin');
-$graph->SetMarginColor('white');
-$graph->SetBox();
-//$graph->img->SetAntialiasing();
-
-$graph->SetGridDepth(DEPTH_FRONT);
-$graph->ygrid->SetColor('gray@0.7');
-$graph->SetBackgroundImage('classroom.jpg',BGIMG_FILLPLOT);
-
-// Masking graph
-$p1 = new LinePlot($datay);
-$p1->SetFillColor('white');
-$p1->SetFillFromYMax();
-$p1->SetWeight(0);
-$graph->Add($p1);
-
-// Line plot
-$p2 = new LinePlot($datay);
-$p2->SetColor('black@0.4');
-$p2->SetWeight(3);
-$p2->mark->SetType(MARK_SQUARE);
-$p2->mark->SetColor('orange@0.5');
-$p2->mark->SetFillColor('orange@0.3');
-$graph->Add($p2);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/linlogex1.php b/#jpgraph/src/Examples/linlogex1.php
deleted file mode 100644
index 4c2be9de..00000000
--- a/#jpgraph/src/Examples/linlogex1.php
+++ /dev/null
@@ -1,64 +0,0 @@
-SetScale("linlog");
-$graph->img->SetMargin(40,20,20,40);
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->Set("ab/2");
-$graph->yaxis->title->Set("rho_s");
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->ygrid->Show(true,true);
-$graph->xgrid->Show(true,true);
-
-$errorplot=new ErrorPlot($ydata, $xdata);
-
-$graph->Add($errorplot);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/listallflags.php b/#jpgraph/src/Examples/listallflags.php
deleted file mode 100644
index 0f7a7966..00000000
--- a/#jpgraph/src/Examples/listallflags.php
+++ /dev/null
@@ -1,29 +0,0 @@
-
";
-
-?>
-
diff --git a/#jpgraph/src/Examples/listallflags_helper.php b/#jpgraph/src/Examples/listallflags_helper.php
deleted file mode 100644
index 52ad9f9b..00000000
--- a/#jpgraph/src/Examples/listallflags_helper.php
+++ /dev/null
@@ -1,25 +0,0 @@
-GetImgByIdx($idx);
-header ("Content-type: image/png");
-ImagePng ($img);
-
-?>
diff --git a/#jpgraph/src/Examples/listfontsex1.php b/#jpgraph/src/Examples/listfontsex1.php
deleted file mode 100644
index 15ee50d1..00000000
--- a/#jpgraph/src/Examples/listfontsex1.php
+++ /dev/null
@@ -1,154 +0,0 @@
-Set(0,27,0,85);
-$g->SetMargin(5,6,5,6);
-$g->SetColor('white');
-$g->SetMarginColor("teal");
-$g->InitFrame();
-
-
-$t = new CanvasRectangleText();
-$t->SetFont(FF_ARIAL,FS_NORMAL,16);
-$t->SetFillColor('lemonchiffon2');
-$t->SetFontColor('black');
-$t->Set("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTTF Fonts (11pt)",0.5,19.5,26,64.5);
-$t->Stroke($g->img,$scale);
-
-$t->SetFillColor('lemonchiffon3');
-$t->Set("\n\n\n\nBitmap Fonts",0.5,5,26,13.5);
-$t->Stroke($g->img,$scale);
-
-
-$t = new CanvasRectangleText();
-$t->SetFillColor('');
-$t->SetFontColor('black');
-$t->SetColor('');
-$t->SetShadow('');
-
-$t->SetFont(FF_ARIAL,FS_BOLD,18);
-$t->Set('Normal',1,1,8);
-$t->Stroke($g->img,$scale);
-
-$t->Set('Italic style',9,1,8);
-$t->Stroke($g->img,$scale);
-
-$t->Set('Bold style',17.5,1,8);
-$t->Stroke($g->img,$scale);
-
-
-$t->SetFillColor('yellow');
-$t->SetFontColor('black');
-$t->SetColor('black');
-$t->SetShadow('gray');
-
-$r=6;$c=1;$w=7.5;$h=3.5;
-
-$fonts=array(
- array("Font 0",FF_FONT0,FS_NORMAL),
- array("",FF_FONT0,FS_ITALIC),
- array("",FF_FONT0,FS_BOLD),
-
- array("Font 1",FF_FONT1,FS_NORMAL),
- array("",FF_FONT1,FS_ITALIC),
- array("Font 1 bold",FF_FONT1,FS_BOLD),
-
- array("Font 2",FF_FONT2,FS_NORMAL),
- array("",FF_FONT2,FS_ITALIC),
- array("Font 2 bold",FF_FONT2,FS_BOLD),
-
- array("Arial",FF_ARIAL,FS_NORMAL),
- array("Arial italic",FF_ARIAL,FS_ITALIC),
- array("Arial bold",FF_ARIAL,FS_BOLD),
-
- array("Verdana",FF_VERDANA,FS_NORMAL),
- array("Verdana italic",FF_VERDANA,FS_ITALIC),
- array("Verdana bold",FF_VERDANA,FS_BOLD),
-
-
- array("Trebuche",FF_TREBUCHE,FS_NORMAL),
- array("Trebuche italic",FF_TREBUCHE,FS_ITALIC),
- array("Trebuche bold",FF_TREBUCHE,FS_BOLD),
-
- array("Georgia",FF_GEORGIA,FS_NORMAL),
- array("Georgia italic",FF_GEORGIA,FS_ITALIC),
- array("Georgia bold",FF_GEORGIA,FS_BOLD),
-
- array("Comic",FF_COMIC,FS_NORMAL),
- array("",FF_COMIC,FS_ITALIC),
- array("Comic bold",FF_COMIC,FS_BOLD),
-
- array("Courier",FF_COURIER,FS_NORMAL),
- array("Courier italic",FF_COURIER,FS_ITALIC),
- array("Courier bold",FF_COURIER,FS_BOLD),
-
- array("Times normal",FF_TIMES,FS_NORMAL),
- array("Times italic",FF_TIMES,FS_ITALIC),
- array("Times bold",FF_TIMES,FS_BOLD),
-
- array("Vera normal",FF_VERA,FS_NORMAL),
- array("Vera italic",FF_VERA,FS_ITALIC),
- array("Vera bold",FF_VERA,FS_BOLD),
-
- array("Vera mono normal",FF_VERAMONO,FS_NORMAL),
- array("Vera mono italic",FF_VERAMONO,FS_ITALIC),
- array("Vera mono bold",FF_VERAMONO,FS_BOLD),
-
- array("Vera serif normal",FF_VERASERIF,FS_NORMAL),
- array("",FF_VERASERIF,FS_ITALIC),
- array("Vera serif bold",FF_VERASERIF,FS_BOLD),
-
- array("DejaVu sans serif",FF_DV_SANSSERIF,FS_NORMAL),
- array("DejaVu sans serif",FF_DV_SANSSERIF,FS_ITALIC),
- array("DejaVu sans serif",FF_DV_SANSSERIF,FS_BOLD),
-
- array("DejaVu serif",FF_DV_SERIF,FS_NORMAL),
- array("DejaVu serif",FF_DV_SERIF,FS_ITALIC),
- array("DejaVu serif",FF_DV_SERIF,FS_BOLD),
-
- array("DejaVuMono sans serif",FF_DV_SANSSERIFMONO,FS_NORMAL),
- array("DejaVuMono sans serif",FF_DV_SANSSERIFMONO,FS_ITALIC),
- array("DejaVuMono sans serif",FF_DV_SANSSERIFMONO,FS_BOLD),
-
- array("DejaVuCond serif",FF_DV_SERIFCOND,FS_NORMAL),
- array("DejaVuCond serif",FF_DV_SERIFCOND,FS_ITALIC),
- array("DejaVuCond serif",FF_DV_SERIFCOND,FS_BOLD),
-
- array("DejaVuCond sans serif",FF_DV_SANSSERIFCOND,FS_NORMAL),
- array("DejaVuCond sans serif",FF_DV_SANSSERIFCOND,FS_ITALIC),
- array("DejaVuCond sans serif",FF_DV_SANSSERIFCOND,FS_BOLD),
-
- );
-
-
-$n=count($fonts);
-
-for( $i=0; $i < $n; ++$i ) {
-
- if( $i==9 ) $r += 3;
-
- if( $fonts[$i][0] ) {
- $t->SetTxt($fonts[$i][0]);
- $t->SetPos($c,$r,$w,$h);
- $t->SetFont($fonts[$i][1],$fonts[$i][2],11);
- $t->Stroke($g->img,$scale);
- }
-
- $c += $w+1;
- if( $c > 30-$w-2 ) {
- $c = 1;
- $r += 4;
- }
-
-}
-
-$g->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/logbarex1.php b/#jpgraph/src/Examples/logbarex1.php
deleted file mode 100644
index a3a8a901..00000000
--- a/#jpgraph/src/Examples/logbarex1.php
+++ /dev/null
@@ -1,48 +0,0 @@
-img->SetMargin(50,30,50,50);
-$graph->SetScale("textlog");
-//$graph->SetShadow();
-
-// Setup titles for graph and axis
-$graph->title->Set("Bar with logarithmic Y-scale");
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,18);
-
-$graph->xaxis->SetTitle("2002");
-$graph->xaxis->title->SetFont(FF_ARIAL,FS_NORMAL,16);
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_NORMAL,16);
-$graph->yaxis->SetTitle("Y-title",'center');
-$graph->yaxis->SetTitleMargin(30);
-
-// Setup month on X-scale
-//$graph->xaxis->SetTickLabels($datax);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-
-//You can also set a manual base of the bars
-//$bplot->SetYBase(0.001);
-
-/*
-$bplot->SetShadow();
-$bplot->value->Show();
-$bplot->value->SetFont(FF_ARIAL,FS_BOLD);
-$bplot->value->SetAngle(45);
-$bplot->value->SetColor("black","darkred");
-*/
-
-$graph->Add($bplot);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/loglogex1.php b/#jpgraph/src/Examples/loglogex1.php
deleted file mode 100644
index 31a4a52c..00000000
--- a/#jpgraph/src/Examples/loglogex1.php
+++ /dev/null
@@ -1,59 +0,0 @@
-SetScale("loglog");
-$graph->SetY2Scale("lin");
-$graph->y2axis->SetColor("blue","blue");
-
-$graph->img->SetMargin(50,70,40,50);
-$graph->title->Set("Geoelektrik");
-$graph->xaxis->title->Set("Auslage ab/2 [m]");
-$graph->yaxis->title->Set("rho_s [Ohm m]");
-$graph->y2axis->title->Set("mn/2 [m]");
-$graph->y2axis->title->SetColor("blue");
-$graph->y2axis->SetTitleMargin(35);
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xgrid->Show(true,true);
-$graph->ygrid->Show(true,true);
-
-// Create the linear plot
-
-$lineplot=new LinePlot($rhos,$ab2);
-$lineplot->SetWeight(1);
-$lineplot->mark->SetType(MARK_FILLEDCIRCLE);
-$lineplot->mark->SetWidth(2);
-
-// Create scatter plot
-
-$scplot=new ScatterPlot($mn2,$ab2);
-$scplot->mark->SetType(MARK_FILLEDCIRCLE);
-$scplot->mark->SetColor("blue");
-$scplot->mark->SetWidth(2);
-
-// Add plots to the graph
-
-$graph->AddY2($scplot);
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/manscaleex1.php b/#jpgraph/src/Examples/manscaleex1.php
deleted file mode 100644
index 9a7962aa..00000000
--- a/#jpgraph/src/Examples/manscaleex1.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetScale("textlin",3,35);
-$graph->yscale->ticks->Set(8,2);
-
-$graph->title->Set('Manual scale, manual ticks');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$line = new LinePlot($ydata);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manscaleex2.php b/#jpgraph/src/Examples/manscaleex2.php
deleted file mode 100644
index d192ed8f..00000000
--- a/#jpgraph/src/Examples/manscaleex2.php
+++ /dev/null
@@ -1,21 +0,0 @@
-SetScale("textlin",3,35);
-
-$graph->title->Set('Manual scale, exact limits');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$line = new LinePlot($ydata);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manscaleex3.php b/#jpgraph/src/Examples/manscaleex3.php
deleted file mode 100644
index 2fdcfa28..00000000
--- a/#jpgraph/src/Examples/manscaleex3.php
+++ /dev/null
@@ -1,23 +0,0 @@
-SetScale("textlin",3,35);
-$graph->SetTickDensity(TICKD_DENSE);
-$graph->yscale->SetAutoTicks();
-
-$graph->title->Set('Manual scale, auto ticks');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$line = new LinePlot($ydata);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manscaleex4.php b/#jpgraph/src/Examples/manscaleex4.php
deleted file mode 100644
index 4653ede6..00000000
--- a/#jpgraph/src/Examples/manscaleex4.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetScale("textlin",3,35);
-$graph->yscale->SetAutoTicks();
-
-$graph->title->Set('Manual scale, allow adjustment');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$line = new LinePlot($ydata);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manual_textscale_ex1.php b/#jpgraph/src/Examples/manual_textscale_ex1.php
deleted file mode 100644
index a911c337..00000000
--- a/#jpgraph/src/Examples/manual_textscale_ex1.php
+++ /dev/null
@@ -1,40 +0,0 @@
-GetShortMonth();
-
-// New graph with a drop shadow
-$graph = new Graph(300,200,'auto');
-$graph->SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale("textlin");
-
-// Specify X-labels
-$graph->xaxis->SetTickLabels($months);
-
-// Set title and subtitle
-$graph->title->Set("Textscale with specified labels");
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend("Temperature");
-
-//$b1->SetAbsWidth(6);
-//$b1->SetShadow();
-
-// The order the plots are added determines who's ontop
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manual_textscale_ex2.php b/#jpgraph/src/Examples/manual_textscale_ex2.php
deleted file mode 100644
index 968d9dd2..00000000
--- a/#jpgraph/src/Examples/manual_textscale_ex2.php
+++ /dev/null
@@ -1,40 +0,0 @@
-GetShortMonth();
-
-// New graph with a drop shadow
-$graph = new Graph(300,200);
-$graph->SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale('textlin');
-
-// Specify X-labels
-$graph->xaxis->SetTickLabels($months);
-$graph->xaxis->SetTextTickInterval(2,0);
-
-// Set title and subtitle
-$graph->title->Set('Textscale with tickinterval=2');
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend('Temperature');
-
-// The order the plots are added determines who's ontop
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manual_textscale_ex3.php b/#jpgraph/src/Examples/manual_textscale_ex3.php
deleted file mode 100644
index 18d718cf..00000000
--- a/#jpgraph/src/Examples/manual_textscale_ex3.php
+++ /dev/null
@@ -1,40 +0,0 @@
-GetShortMonth();
-
-// New graph with a drop shadow
-$graph = new Graph(300,200);
-$graph->SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale('textlin');
-
-// Specify X-labels
-$graph->xaxis->SetTickLabels($months);
-$graph->xaxis->SetTextLabelInterval(2);
-
-// Set title and subtitle
-$graph->title->Set('Textscale with tickinterval=2');
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create the bar plot
-$b1 = new BarPlot($databary);
-$b1->SetLegend('Temperature');
-
-// The order the plots are added determines who's ontop
-$graph->Add($b1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manual_textscale_ex4.php b/#jpgraph/src/Examples/manual_textscale_ex4.php
deleted file mode 100644
index 99146faf..00000000
--- a/#jpgraph/src/Examples/manual_textscale_ex4.php
+++ /dev/null
@@ -1,51 +0,0 @@
-GetShortMonth();
-$k=0;
-for($i=0; $i < 480; ++$i) {
- $datay[$i] = rand(1,40);
- if( $i % DATAPERMONTH === 0 )
- $months[$i] = $m[(int)($i/DATAPERMONTH)];
- else
- $months[$i] = 'xx';
-}
-
-
-// New graph with a drop shadow
-$graph = new Graph(400,200);
-//$graph->SetShadow();
-
-// Use a "text" X-scale
-$graph->SetScale('textlin');
-
-// Specify X-labels
-$graph->xaxis->SetTickLabels($months);
-$graph->xaxis->SetTextTickInterval(DATAPERMONTH,0);
-$graph->xaxis->SetTextLabelInterval(2);
-
-// Set title and subtitle
-$graph->title->Set('Textscale with tickinterval=2');
-
-// Use built in font
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->SetBox(true,'red');
-
-// Create the bar plot
-$lp1 = new LinePlot($datay);
-$lp1->SetLegend('Temperature');
-
-// The order the plots are added determines who's ontop
-$graph->Add($lp1);
-
-// Finally output the image
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manualtickex1.php b/#jpgraph/src/Examples/manualtickex1.php
deleted file mode 100644
index 47d0b8d2..00000000
--- a/#jpgraph/src/Examples/manualtickex1.php
+++ /dev/null
@@ -1,73 +0,0 @@
-GetTicks($datax);
-
-// We add some grace to the end of the X-axis scale so that the first and last
-// data point isn't exactly at the very end or beginning of the scale
-$grace = 400000;
-$xmin = $datax[0]-$grace;
-$xmax = $datax[$n-1]+$grace;
-
-//
-// The code to setup a very basic graph
-//
-$graph = new Graph(400,200);
-
-//
-// We use an integer scale on the X-axis since the positions on the X axis
-// are assumed to be UNI timestamps
-$graph->SetScale('intlin',0,0,$xmin,$xmax);
-$graph->title->Set('Basic example with manual ticks');
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-//
-// Make sure that the X-axis is always at the bottom of the scale
-// (By default the X-axis is alwys positioned at Y=0 so if the scale
-// doesn't happen to include 0 the axis will not be shown)
-$graph->xaxis->SetPos('min');
-
-// Now set the tic positions
-$graph->xaxis->SetTickPositions($tickPositions,$minTickPositions);
-
-// The labels should be formatted at dates with "Year-month"
-$graph->xaxis->SetLabelFormatString('My',true);
-
-// Use Ariel font
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-
-// Add a X-grid
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($datay,$datax);
-$p1->SetColor('teal');
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manualtickex1a.php b/#jpgraph/src/Examples/manualtickex1a.php
deleted file mode 100644
index 47d0b8d2..00000000
--- a/#jpgraph/src/Examples/manualtickex1a.php
+++ /dev/null
@@ -1,73 +0,0 @@
-GetTicks($datax);
-
-// We add some grace to the end of the X-axis scale so that the first and last
-// data point isn't exactly at the very end or beginning of the scale
-$grace = 400000;
-$xmin = $datax[0]-$grace;
-$xmax = $datax[$n-1]+$grace;
-
-//
-// The code to setup a very basic graph
-//
-$graph = new Graph(400,200);
-
-//
-// We use an integer scale on the X-axis since the positions on the X axis
-// are assumed to be UNI timestamps
-$graph->SetScale('intlin',0,0,$xmin,$xmax);
-$graph->title->Set('Basic example with manual ticks');
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-//
-// Make sure that the X-axis is always at the bottom of the scale
-// (By default the X-axis is alwys positioned at Y=0 so if the scale
-// doesn't happen to include 0 the axis will not be shown)
-$graph->xaxis->SetPos('min');
-
-// Now set the tic positions
-$graph->xaxis->SetTickPositions($tickPositions,$minTickPositions);
-
-// The labels should be formatted at dates with "Year-month"
-$graph->xaxis->SetLabelFormatString('My',true);
-
-// Use Ariel font
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
-
-// Add a X-grid
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($datay,$datax);
-$p1->SetColor('teal');
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manualtickex2.php b/#jpgraph/src/Examples/manualtickex2.php
deleted file mode 100644
index abd7e101..00000000
--- a/#jpgraph/src/Examples/manualtickex2.php
+++ /dev/null
@@ -1,72 +0,0 @@
-E(0,10);
-
-// Now get labels at 1/2 PI intervall
-$tickPositions = array();
-$tickLabels = array();
-$tickPositions[0] = 0;
-$tickLabels[0] = '0';
-for($i=1; $i/2*M_PI < 11 ; ++$i ) {
- $tickPositions[$i] = $i/2*M_PI;
- if( $i % 2 )
- $tickLabels[$i] = $i.'/2'.SymChar::Get('pi');
- else
- $tickLabels[$i] = ($i/2).SymChar::Get('pi');
-}
-
-$n = count($datax);
-$xmin = $datax[0];
-$xmax = $datax[$n-1];
-
-//
-// The code to setup a very basic graph
-//
-$graph = new Graph(400,200);
-
-//
-// We use an integer scale on the X-axis since the positions on the X axis
-// are assumed to be UNI timestamps
-$graph->SetScale('linlin',0,0,$xmin,$xmax);
-$graph->title->Set('Example with manual tick labels');
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-//
-// Make sure that the X-axis is always at the bottom of the scale
-// (By default the X-axis is alwys positioned at Y=0 so if the scale
-// doesn't happen to include 0 the axis will not be shown)
-$graph->xaxis->SetPos('min');
-
-// Now set the tic positions
-$graph->xaxis->SetMajTickPositions($tickPositions,$tickLabels);
-
-// Use Times font
-$graph->xaxis->SetFont(FF_TIMES,FS_NORMAL,10);
-$graph->yaxis->SetFont(FF_TIMES,FS_NORMAL,10);
-
-// Add a X-grid
-$graph->xgrid->Show();
-
-// Create the plot line
-$p1 = new LinePlot($datay,$datax);
-$p1->SetColor('teal');
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manualtickex3.php b/#jpgraph/src/Examples/manualtickex3.php
deleted file mode 100644
index 0bd03cea..00000000
--- a/#jpgraph/src/Examples/manualtickex3.php
+++ /dev/null
@@ -1,91 +0,0 @@
-E(0,10);
-
-// Now get labels at 1/2 PI intervall
-$tickPositions = array();
-$tickLabels = array();
-$tickPositions[0] = 0;
-$tickLabels[0] = '0';
-for($i=1; $i/2*M_PI < 11 ; ++$i ) {
- $tickPositions[$i] = $i/2*M_PI;
- if( $i % 2 )
- $tickLabels[$i] = $i.'/2'.SymChar::Get('pi');
- else
- $tickLabels[$i] = ($i/2).SymChar::Get('pi');
-}
-
-$n = count($datax);
-$xmin = $datax[0];
-$xmax = $datax[$n-1];
-
-//
-// The code to setup a very basic graph
-//
-$graph = new Graph(400,200);
-
-// We use an integer scale on the X-axis since the positions on the X axis
-// are assumed to be UNI timestamps
-$graph->SetScale('linlin',0,0,$xmin,$xmax);
-$graph->title->Set('Example with manual tick labels');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->SetColor('white');
-
-// Setup a abackground gradient
-$graph->SetBackgroundGradient('darkred:0.7', 'black', 2, BGRAD_MARGIN);
-$graph->SetPlotGradient('black','darkred:0.8', 2);
-
-// Make sure that the X-axis is always at the bottom of the scale
-// (By default the X-axis is alwys positioned at Y=0 so if the scale
-// doesn't happen to include 0 the axis will not be shown)
-$graph->xaxis->SetPos('min');
-
-// Now set the tic positions
-$graph->xaxis->SetMajTickPositions($tickPositions,$tickLabels);
-
-// Use Times font
-$graph->xaxis->SetFont(FF_TIMES,FS_NORMAL,11);
-$graph->yaxis->SetFont(FF_TIMES,FS_NORMAL,9);
-
-// Set colors for axis
-$graph->xaxis->SetColor('lightgray');
-$graph->yaxis->SetColor('lightgray');
-
-// Add a X-grid
-$graph->xgrid->Show();
-
-// Show ticks outwards
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->xaxis->SetLabelMargin(8);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Setup a filled y-grid
-//$graph->ygrid->SetFill(true,'darkgray:1.55@0.7','darkgray:1.6@0.7');
-$graph->ygrid->SetStyle('dotted');
-$graph->xgrid->SetStyle('dashed');
-
-// Create the plot line
-$p1 = new LinePlot($datay,$datax);
-$p1->SetWeight(2);
-$p1->SetColor('orange:0.9');
-$p1->SetFillColor('white@0.7');
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/manualtickex4.php b/#jpgraph/src/Examples/manualtickex4.php
deleted file mode 100644
index f4a80e67..00000000
--- a/#jpgraph/src/Examples/manualtickex4.php
+++ /dev/null
@@ -1,92 +0,0 @@
-E(0,10);
-
-// Now get labels at 1/2 PI intervall
-$tickPositions = array();
-$tickLabels = array();
-$tickPositions[0] = 0;
-$tickLabels[0] = '0';
-for($i=1; $i/2*M_PI < 11 ; ++$i ) {
- $tickPositions[$i] = $i/2*M_PI;
- if( $i % 2 )
- $tickLabels[$i] = $i.'/2'.SymChar::Get('pi');
- else
- $tickLabels[$i] = ($i/2).SymChar::Get('pi');
-}
-
-$n = count($datax);
-$xmin = $datax[0];
-$xmax = $datax[$n-1];
-
-//
-// The code to setup a very basic graph
-//
-$graph = new Graph(400,200);
-
-// We use an integer scale on the X-axis since the positions on the X axis
-// are assumed to be UNI timestamps
-$graph->SetScale('linlin',0,0,$xmin,$xmax);
-$graph->title->Set('Example with manual tick labels');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
-$graph->title->SetColor('white');
-
-// Setup a abackground gradient
-$graph->SetBackgroundGradient('darkred:0.7', 'black', 2, BGRAD_MARGIN);
-$graph->SetPlotGradient('black','darkred:0.8', 2);
-
-// Make sure that the X-axis is always at the bottom of the scale
-// (By default the X-axis is alwys positioned at Y=0 so if the scale
-// doesn't happen to include 0 the axis will not be shown)
-$graph->xaxis->SetPos('min');
-
-// Now set the tic positions
-$graph->xaxis->SetMajTickPositions($tickPositions,$tickLabels);
-
-// Use Times font
-$graph->xaxis->SetFont(FF_TIMES,FS_NORMAL,11);
-$graph->yaxis->SetFont(FF_TIMES,FS_NORMAL,9);
-
-// Set colors for axis
-$graph->xaxis->SetColor('lightgray');
-$graph->yaxis->SetColor('lightgray');
-
-// Add a X-grid
-$graph->xgrid->Show();
-
-// Show ticks outwards
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->xaxis->SetLabelMargin(8);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Setup a filled y-grid
-//$graph->ygrid->SetFill(true,'darkgray:1.55@0.7','darkgray:1.6@0.7');
-$graph->ygrid->SetStyle('dotted');
-$graph->xgrid->SetStyle('dashed');
-
-// Create the plot line
-$p1 = new LinePlot($datay,$datax);
-$p1->SetWeight(2);
-$p1->SetColor('orange:0.9');
-$p1->SetFillColor('white@0.7');
-$p1->SetFillFromYMin();
-$graph->Add($p1);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/markflagex1.php b/#jpgraph/src/Examples/markflagex1.php
deleted file mode 100644
index 576134e2..00000000
--- a/#jpgraph/src/Examples/markflagex1.php
+++ /dev/null
@@ -1,74 +0,0 @@
-SetMarginColor('white');
-$graph->SetScale("textlin");
-$graph->SetFrame(false);
-$graph->SetMargin(30,5,25,20);
-
-// Enable X-grid as well
-$graph->xgrid->Show();
-
-// Use months as X-labels
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-//------------------------
-// Create the plots
-//------------------------
-$p1 = new LinePlot($datay[0]);
-$p1->SetColor("navy");
-
-// Use a flag
-$p1->mark->SetType(MARK_FLAG1,197);
-
-// Displayes value on top of marker image
-$p1->value->SetFormat('%d mil');
-$p1->value->Show();
-$p1->value->SetColor('darkred');
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,10);
-// Increase the margin so that the value is printed avove tje
-// img marker
-$p1->value->SetMargin(14);
-
-// Incent the X-scale so the first and last point doesn't
-// fall on the edges
-$p1->SetCenter();
-
-$graph->Add($p1);
-
-//------------
-// 2:nd plot
-//------------
-$p2 = new LinePlot($datay[1]);
-$p2->SetColor("navy");
-
-// Use a flag
-$p2->mark->SetType(MARK_FLAG1,'united states');
-
-// Displayes value on top of marker image
-$p2->value->SetFormat('%d mil');
-$p2->value->Show();
-$p2->value->SetColor('darkred');
-$p2->value->SetFont(FF_ARIAL,FS_BOLD,10);
-// Increase the margin so that the value is printed avove tje
-// img marker
-$p2->value->SetMargin(14);
-
-// Incent the X-scale so the first and last point doesn't
-// fall on the edges
-$p2->SetCenter();
-$graph->Add($p2);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/matrix_csimex01.php b/#jpgraph/src/Examples/matrix_csimex01.php
deleted file mode 100644
index 76bb0a1e..00000000
--- a/#jpgraph/src/Examples/matrix_csimex01.php
+++ /dev/null
@@ -1,76 +0,0 @@
-SetBackgroundGradient('lightsteelblue:0.8','lightsteelblue:0.3');
-$graph->title->Set('CSIM with matrix');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('white');
-
-// Create one matrix plot
-$mp = new MatrixPlot($data,1);
-$mp->SetModuleSize(13,15);
-$mp->SetCenterPos(0.35,0.6);
-$mp->colormap->SetNullColor('gray');
-
-// Setup column lablels
-$mp->collabel->Set($collabels);
-$mp->collabel->SetSide('top');
-$mp->collabel->SetFont(FF_ARIAL,FS_NORMAL,8);
-$mp->collabel->SetFontColor('lightgray');
-
-// Setup row lablels
-$mp->rowlabel->Set($rowlabels);
-$mp->rowlabel->SetSide('right');
-$mp->rowlabel->SetFont(FF_ARIAL,FS_NORMAL,8);
-$mp->rowlabel->SetFontColor('lightgray');
-
-$mp->rowlabel->SetCSIMTargets($rowlabeltargets);
-$mp->collabel->SetCSIMTargets($collabeltargets);
-
-// Move the legend more to the right
-$mp->legend->SetMargin(90);
-$mp->legend->SetColor('white');
-$mp->legend->SetFont(FF_VERDANA,FS_BOLD,10);
-
-$mp->SetCSIMTargets($csimtargets);
-
-$graph->Add($mp);
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_edgeex01.php b/#jpgraph/src/Examples/matrix_edgeex01.php
deleted file mode 100644
index e66fd77a..00000000
--- a/#jpgraph/src/Examples/matrix_edgeex01.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetMarginColor('white');
-$graph->title->Set('Adding labels on the edges');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-// Create one matrix plot
-$mp = new MatrixPlot($data,1);
-$mp->SetModuleSize(13,15);
-$mp->SetCenterPos(0.35,0.45);
-$mp->colormap->SetNullColor('gray');
-
-// Setup column lablels
-$mp->collabel->Set($xlabels);
-$mp->collabel->SetSide('bottom');
-$mp->collabel->SetFont(FF_ARIAL,FS_NORMAL,8);
-$mp->collabel->SetFontColor('darkgray');
-
-// Setup row lablels
-$mp->rowlabel->Set($ylabels);
-$mp->rowlabel->SetSide('right');
-$mp->rowlabel->SetFont(FF_ARIAL,FS_NORMAL,8);
-$mp->rowlabel->SetFontColor('darkgray');
-
-// Move the legend more to the right
-$mp->legend->SetMargin(90);
-
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_edgeex02.php b/#jpgraph/src/Examples/matrix_edgeex02.php
deleted file mode 100644
index c07ba6a1..00000000
--- a/#jpgraph/src/Examples/matrix_edgeex02.php
+++ /dev/null
@@ -1,51 +0,0 @@
-title->Set('Add ine row/col labels');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-$mp = new MatrixPlot($data,1);
-$mp->SetSize(0.55);
-$mp->SetCenterPos(0.45, 0.45);
-
-$rowtitles = array();
-for( $i=0; $i < $nrow; ++$i ) {
- $rowtitles[$i] = sprintf('Row: %02d',$i);
-}
-$coltitles = array();
-for( $i=0; $i < $ncol; ++$i ) {
- $coltitles[$i] = sprintf('Col: %02d',$i);
-}
-
-$mp->rowlabel->Set($rowtitles);
-$mp->rowlabel->SetFont(FF_ARIAL,FS_NORMAL,10);
-$mp->rowlabel->SetFontColor('blue');
-$mp->rowlabel->SetSide('left');
-
-$mp->collabel->Set($coltitles);
-$mp->collabel->SetFont(FF_ARIAL,FS_NORMAL,10);
-$mp->collabel->SetFontColor('darkred');
-$mp->collabel->SetAngle(70); // 90 is default for col titles
-$mp->collabel->SetSide('bottom');
-
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_ex0.php b/#jpgraph/src/Examples/matrix_ex0.php
deleted file mode 100644
index 43777cf8..00000000
--- a/#jpgraph/src/Examples/matrix_ex0.php
+++ /dev/null
@@ -1,28 +0,0 @@
-title->Set('Basic matrix example');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-// Create a ,atrix plot using all default values
-$mp = new MatrixPlot($data);
-$graph->Add($mp);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_ex01.php b/#jpgraph/src/Examples/matrix_ex01.php
deleted file mode 100644
index d0387dd1..00000000
--- a/#jpgraph/src/Examples/matrix_ex01.php
+++ /dev/null
@@ -1,38 +0,0 @@
-title->Set('Possible legend positions');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-$mp = array();
-$n = 4;
-$pos = array(0.3,0.33, 0.8,0.68,
- 0.3,0.68, 0.8,0.33);
-for($i=0; $i < $n; ++$i){
- $mp[$i] = new MatrixPlot($data);
- $mp[$i]->colormap->SetMap($i);
- $mp[$i]->SetModuleSize(4,5);
- $mp[$i]->SetLegendLayout($i);
- $mp[$i]->SetCenterPos($pos[$i*2],$pos[$i*2+1]);
-}
-
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_ex02.php b/#jpgraph/src/Examples/matrix_ex02.php
deleted file mode 100644
index f81e59cd..00000000
--- a/#jpgraph/src/Examples/matrix_ex02.php
+++ /dev/null
@@ -1,32 +0,0 @@
-title->Set('Meshinterpolation=3');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-$mp = new MatrixPlot($data,1);
-$mp->colormap->SetMap(0);
-$mp->SetSize(200,160);
-$mp->SetCenterPos(0.5,0.55);
-$mp->legend->Show(false);
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_ex03.php b/#jpgraph/src/Examples/matrix_ex03.php
deleted file mode 100644
index a943acd0..00000000
--- a/#jpgraph/src/Examples/matrix_ex03.php
+++ /dev/null
@@ -1,36 +0,0 @@
-title->Set('Adding an icon to the background');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-$mp = new MatrixPlot($data,1);
-$mp->SetSize(0.6);
-
-$icon = new IconPlot('icon.jpg',$width-1,$height-1,0.8,50);
-$icon->SetAnchor('right','bottom');
-$graph->Add($icon);
-
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_ex04.1.php b/#jpgraph/src/Examples/matrix_ex04.1.php
deleted file mode 100644
index 419a437a..00000000
--- a/#jpgraph/src/Examples/matrix_ex04.1.php
+++ /dev/null
@@ -1,40 +0,0 @@
-title->Set('Adding a background image');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->subtitle->Set('Alphablending = 0.2');
-
-// Add a stretched background image
-$graph->SetBackgroundImage('ironrod.jpg',BGIMG_FILLFRAME);
-$graph->SetBackgroundImageMix(50);
-
-$mp = new MatrixPlot($data,1);
-$mp->SetSize(0.65);
-$mp->SetCenterPos(0.5,0.5);
-$mp->SetLegendLayout(1);
-$mp->SetAlpha(0.2);
-
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_ex04.2.php b/#jpgraph/src/Examples/matrix_ex04.2.php
deleted file mode 100644
index 6650444c..00000000
--- a/#jpgraph/src/Examples/matrix_ex04.2.php
+++ /dev/null
@@ -1,40 +0,0 @@
-title->Set('Adding a background image');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->subtitle->Set('Alphablending = 0.7');
-
-// Add a stretched background image
-$graph->SetBackgroundImage('ironrod.jpg',BGIMG_FILLFRAME);
-$graph->SetBackgroundImageMix(50);
-
-$mp = new MatrixPlot($data,1);
-$mp->SetSize(0.65);
-$mp->SetCenterPos(0.5,0.5);
-$mp->SetLegendLayout(1);
-$mp->SetAlpha(0.7);
-
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_ex04.php b/#jpgraph/src/Examples/matrix_ex04.php
deleted file mode 100644
index 2917f15c..00000000
--- a/#jpgraph/src/Examples/matrix_ex04.php
+++ /dev/null
@@ -1,38 +0,0 @@
-title->Set('Adding a background image');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-// Add a stretched background image
-$graph->SetBackgroundImage('ironrod.jpg',BGIMG_FILLFRAME);
-$graph->SetBackgroundImageMix(50);
-
-$mp = new MatrixPlot($data,1);
-$mp->SetSize(0.6);
-$mp->SetCenterPos(0.5,0.5);
-$mp->SetLegendLayout(1);
-
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_ex05.php b/#jpgraph/src/Examples/matrix_ex05.php
deleted file mode 100644
index d3f989ea..00000000
--- a/#jpgraph/src/Examples/matrix_ex05.php
+++ /dev/null
@@ -1,31 +0,0 @@
-title->Set('Using a circular module type');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-$mp = new MatrixPlot($data,2);
-$mp->SetSize(0.85);
-$mp->SetModuleType(1);
-$mp->SetBackgroundColor('teal:1.8');
-$mp->SetCenterPos(0.5,0.45);
-$mp->SetLegendLayout(1);
-
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_ex06.php b/#jpgraph/src/Examples/matrix_ex06.php
deleted file mode 100644
index 7c3d4727..00000000
--- a/#jpgraph/src/Examples/matrix_ex06.php
+++ /dev/null
@@ -1,75 +0,0 @@
-SetBackgroundGradient('lightsteelblue:0.8','lightsteelblue:0.3');
-$graph->title->Set('Matrix with lines');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,18);
-$graph->title->SetColor('white');
-
-// Create two lines to add as markers
-$l1 = new PlotLine(VERTICAL, 5, 'lightgray:1.5', 4);
-$l2 = new PlotLine(HORIZONTAL, 3, 'lightgray:1.5', 4);
-
-// Create one matrix plot
-$mp = new MatrixPlot($data,1);
-$mp->SetModuleSize(13,15);
-$mp->SetCenterPos(0.35,0.6);
-$mp->colormap->SetNullColor('gray');
-
-// Add lines
-$mp->AddLine($l1);
-$mp->AddLine($l2);
-// this could also be done as
-// $mp->AddLine(array($l1,$l2));
-
-// Setup column lablels
-$mp->collabel->Set($collabels);
-$mp->collabel->SetSide('top');
-$mp->collabel->SetFont(FF_ARIAL,FS_NORMAL,8);
-$mp->collabel->SetFontColor('lightgray');
-
-// Setup row lablels
-$mp->rowlabel->Set($rowlabels);
-$mp->rowlabel->SetSide('right');
-$mp->rowlabel->SetFont(FF_ARIAL,FS_NORMAL,8);
-$mp->rowlabel->SetFontColor('lightgray');
-
-// Move the legend more to the right
-$mp->legend->SetMargin(90);
-$mp->legend->SetColor('white');
-$mp->legend->SetFont(FF_VERDANA,FS_BOLD,10);
-
-$graph->Add($mp);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrix_introex.php b/#jpgraph/src/Examples/matrix_introex.php
deleted file mode 100644
index fcecc40c..00000000
--- a/#jpgraph/src/Examples/matrix_introex.php
+++ /dev/null
@@ -1,89 +0,0 @@
-Push();
-
-//--------------------------------------------------------------
-// Setup a basic matrix graph
-//--------------------------------------------------------------
-$width = 740; $height = 500;
-$graph = new MatrixGraph($width,$height);
-$graph->SetMargin(1,2,70,1);
-$graph->SetColor('white');
-$graph->SetMarginColor('#fafafa');
-$graph->title->Set('Intro matrix graph');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-// Setup the background image
-$graph->SetBackgroundImage('fireplace.jpg',BGIMG_FILLPLOT);
-$graph->SetBackgroundImageMix(50);
-
-// Setup the timer in the right footer
-$graph->footer->SetTimer($timer);
-$graph->footer->right->SetColor('white');
-
-//--------------------------------------------------------------
-// Create the 2 matrix plots
-//--------------------------------------------------------------
-$mp = array(); $n = 2;
-for($i=0; $i < $n; ++$i){
- $mp[$i] = new MatrixPlot($data);
- $mp[$i]->colormap->SetMap($i);
- $mp[$i]->SetSize(300,250);
- $mp[$i]->SetLegendLayout(1);
- $mp[$i]->SetAlpha(0.2);
-
- // Make the legend slightly longer than default
- $mp[$i]->legend->SetSize(20,280);
-}
-$mp[1]->colormap->SetMap(3);
-
-$hor1 = new LayoutHor(array($mp[0],$mp[1]));
-$hor1->SetCenterPos(0.5,0.5);
-
-$graph->Add($hor1);
-
-//--------------------------------------------------------------
-// Add texts to the graph
-//--------------------------------------------------------------
-$txts = array(
- array('Temperature gradient',$width/2,80),
- array('Heat color map',200,110),
- array('High contrast map',560,110));
-
-$n=count($txts);
-$t=array();
-for($i=0; $i < $n; ++$i){
- $t[$i] = new Text($txts[$i][0],$txts[$i][1],$txts[$i][2]);
- $t[$i]->SetFont(FF_ARIAL,FS_BOLD,14);
- $t[$i]->SetColor('white');
- $t[$i]->SetAlign('center','top');
-}
-$graph->Add($t);
-
-//--------------------------------------------------------------
-// Add Jpgraph logo to top left corner
-//--------------------------------------------------------------
-$icon = new IconPlot('jpglogo.jpg',2,2,0.9,50);
-$graph->Add($icon);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/matrix_layout_ex1.php b/#jpgraph/src/Examples/matrix_layout_ex1.php
deleted file mode 100644
index 1fefb1a8..00000000
--- a/#jpgraph/src/Examples/matrix_layout_ex1.php
+++ /dev/null
@@ -1,44 +0,0 @@
-title->Set('Matrix layout example');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-$mp = array();
-$n = 5;
-for($i=0; $i < $n; ++$i){
- $mp[$i] = new MatrixPlot($data);
- $mp[$i]->colormap->SetMap($i);
- if( $i < 2 )
- $mp[$i]->SetSize(0.35);
- else
- $mp[$i]->SetSize(0.21);
- // We need to make the legend a bit smaller since by
- // defalt has a ~45% height
- $mp[$i]->legend->SetModuleSize(15,2);
-}
-
-$hor1 = new LayoutHor(array($mp[0],$mp[1]));
-$hor2 = new LayoutHor(array($mp[2],$mp[3],$mp[4]));
-$vert = new LayoutVert(array($hor1,$hor2));
-$vert->SetCenterPos(0.45,0.5);
-
-$graph->Add($vert);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/matrixex00.php b/#jpgraph/src/Examples/matrixex00.php
deleted file mode 100644
index 2ba5114a..00000000
--- a/#jpgraph/src/Examples/matrixex00.php
+++ /dev/null
@@ -1,59 +0,0 @@
-title->Set('Matrix example 00');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-//$graph->SetColor('darkgreen@0.8');
-
-$mp = array();
-$n = 5;
-for($i=0; $i < $n; ++$i){
- $mp[$i] = new MatrixPlot($data);
- $mp[$i]->colormap->SetMap($i);
- if( $i < 2 )
- $mp[$i]->SetSize(0.35);
- else
- $mp[$i]->SetSize(0.21);
-}
-
-$hor1 = new LayoutHor(array($mp[0],$mp[1]));
-$hor2 = new LayoutHor(array($mp[2],$mp[3],$mp[4]));
-$vert = new LayoutVert(array($hor1,$hor2));
-$vert->SetCenterPos(0.45,0.5);
-
-//$mp = new MatrixPlot($data);
-//$mp->colormap->SetMap(2);
-//$mp->SetCenterPos(0.5, 0.45);
-//$mp->SetLegendLayout(0);
-//$mp->SetSize(0.6);
-//$mp->legend->Show(false);
-//$mp->SetModuleSize(5,5);
-
-//$mp->legend->SetModuleSize(20,4);
-//$mp->legend->SetSize(20,0.5);
-
-//$t = new Text('A text string',10,10);
-//$graph->Add($t);
-
-//$graph->Add($mp);
-
-$graph->Add($vert);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/mkgrad.php b/#jpgraph/src/Examples/mkgrad.php
deleted file mode 100644
index 3f36b44a..00000000
--- a/#jpgraph/src/Examples/mkgrad.php
+++ /dev/null
@@ -1,171 +0,0 @@
-iColors = array_keys($rgb->rgb_table);
- usort($this->iColors,'_cmp');
-
- $this->iGradstyles = array(
- "Vertical",2,
- "Horizontal",1,
- "Vertical from middle",3,
- "Horizontal from middle",4,
- "Horizontal wider middle",6,
- "Vertical wider middle",7,
- "Rectangle",5 );
- }
-
- function Run() {
-
- echo '
Generate gradient background
';
- echo '';
-
- }
-
- function GenHTMLSubmit($name) {
- return '';
- }
-
-
- function GenHTMLInput($name,$len,$maxlen=100,$val='') {
- return '';
- }
-
- function GenHTMLSelect($name,$option,$selected="",$size=0) {
- $txt="\n";
- }
-
- function GenHTMLSelectCode($name,$option,$selected="",$size=0) {
- $txt="\n";
- }
-
-}
-
-// Basic application driver
-
-class Driver {
- var $iGraph, $iGrad;
- var $iWidth,$iHeight;
- var $iFromColor, $iToColor;
- var $iStyle;
- var $iForm;
-
- function Driver() {
- $this->iForm = new Form();
- }
-
- function GenGradImage() {
-
- $aWidth = (int)@$_POST['w'];
- $aHeight = (int)@$_POST['h'];
- $aFrom = @$_POST['fc'];
- $aTo = @$_POST['tc'];
- $aStyle = @$_POST['s'];
- $aFileName = @$_POST['fn'];
-
- $this->iWidth = $aWidth;
- $this->iHeight = $aHeight;
- $this->iFromColor = $aFrom;
- $this->iToColor = $aTo;
- $this->iStyle = $aStyle;
-
- $this->graph = new CanvasGraph($aWidth,$aHeight);
- $this->grad = new Gradient($this->graph->img);
- $this->grad->FilledRectangle(0,0,
- $this->iWidth,$this->iHeight,
- $this->iFromColor,
- $this->iToColor,
- $this->iStyle);
-
- if( $aFileName != "" ) {
- $this->graph->Stroke($aFileName);
- echo "Image file '$aFileName' created.";
- }
- else
- $this->graph->Stroke();
- }
-
-
- function Run() {
-
- global $HTTP_POST_VARS;
-
- // Two modes:
- // 1) If the script is called with no posted arguments
- // we show the input form.
- // 2) If we have posted arguments we naivly assume that
- // we are called to do the image.
-
- if( @$_POST['ok']===' Ok ' ) {
- $this->GenGradImage();
- }
- else
- $this->iForm->Run();
- }
-}
-
-$driver = new Driver();
-$driver->Run();
-
-?>
diff --git a/#jpgraph/src/Examples/multconstganttex01.php b/#jpgraph/src/Examples/multconstganttex01.php
deleted file mode 100644
index fce986e2..00000000
--- a/#jpgraph/src/Examples/multconstganttex01.php
+++ /dev/null
@@ -1,30 +0,0 @@
-title->Set("Example with multiple constrains");
-
-$bar1 = new GanttBar(0, "Label 1", "2003-06-08", "2003-06-12");
-$bar2 = new GanttBar(1, "Label 2", "2003-06-16", "2003-06-19");
-$bar3 = new GanttBar(2, "Label 3", "2003-06-15", "2003-06-21");
-
-//create constraints
-$bar1->SetConstrain(1, CONSTRAIN_ENDSTART);
-$bar1->SetConstrain(2, CONSTRAIN_ENDSTART);
-
-// Setup scale
-$graph->ShowHeaders(/*GANTT_HYEAR | GANTT_HMONTH |*/ GANTT_HDAY | GANTT_HWEEK);
-$graph->scale->week->SetStyle(WEEKSTYLE_FIRSTDAYWNBR);
-
-// Add the specified activities
-$graph->Add($bar1);
-$graph->Add($bar2);
-$graph->Add($bar3);
-
-// .. and stroke the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/mulyaxiscsimex1.php b/#jpgraph/src/Examples/mulyaxiscsimex1.php
deleted file mode 100644
index 516aea34..00000000
--- a/#jpgraph/src/Examples/mulyaxiscsimex1.php
+++ /dev/null
@@ -1,75 +0,0 @@
-SetMargin(60,180,50,40);
-$graph->SetMarginColor('white');
-$graph->title->Set("Multi Y-axes with Image Map");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Setup the scales for all axes
-$graph->SetScale("intlin");
-$graph->SetYScale(0,'int');
-$graph->SetYScale(1,'int');
-
-// Standard Y-axis plot
-$lp1 = new LinePlot($datay1);
-$lp1->SetLegend('2001');
-$lp1->mark->SetType(MARK_DIAMOND);
-$lp1->mark->SetWidth(15);
-$lp1->mark->SetFillColor('orange');
-$lp1->SetCSIMTargets($targ1,$alts1);
-$graph->yaxis->title->Set('Basic Rate');
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->yaxis->title->SetColor('black');
-$graph->Add($lp1);
-
-// First multi Y-axis plot
-$lp2 = new LinePlot($datay2);
-$lp2->SetLegend('2002');
-$lp2->mark->SetType(MARK_DIAMOND);
-$lp2->mark->SetWidth(15);
-$lp2->mark->SetFillColor('darkred');
-$lp2->SetCSIMTargets($targ2,$alts2);
-$graph->ynaxis[0]->SetColor('darkred');
-$graph->ynaxis[0]->title->Set('Rate A');
-$graph->ynaxis[0]->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->ynaxis[0]->title->SetColor('darkred');
-$graph->AddY(0,$lp2);
-
-// Second multi Y-axis plot
-$lp3 = new LinePlot($datay3);
-$lp3->SetLegend('2003');
-$lp3->mark->SetType(MARK_DIAMOND);
-$lp3->mark->SetWidth(15);
-$lp3->mark->SetFillColor('darkgreen');
-$lp3->SetCSIMTargets($targ3,$alts3);
-$graph->ynaxis[1]->SetColor('darkgreen');
-$graph->ynaxis[1]->title->Set('Rate B');
-$graph->ynaxis[1]->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->ynaxis[1]->title->SetColor('darkgreen');
-$graph->AddY(1,$lp3);
-
-// Send back the HTML page which will call this script again
-// to retrieve the image.
-$graph->StrokeCSIM();
-?>
diff --git a/#jpgraph/src/Examples/mulyaxisex1.php b/#jpgraph/src/Examples/mulyaxisex1.php
deleted file mode 100644
index 57304eba..00000000
--- a/#jpgraph/src/Examples/mulyaxisex1.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetMargin(40,150,40,30);
-$graph->SetMarginColor('white');
-
-$graph->SetScale('intlin');
-$graph->title->Set('Using multiple Y-axis');
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,14);
-
-$graph->SetYScale(0,'lin');
-$graph->SetYScale(1,'lin');
-$graph->SetYScale(2,'lin');
-
-$p1 = new LinePlot($datay);
-$graph->Add($p1);
-
-$p2 = new LinePlot($datay2);
-$p2->SetColor('teal');
-$graph->AddY(0,$p2);
-$graph->ynaxis[0]->SetColor('teal');
-
-$p3 = new LinePlot($datay3);
-$p3->SetColor('red');
-$graph->AddY(1,$p3);
-$graph->ynaxis[1]->SetColor('red');
-
-$p4 = new LinePlot($datay4);
-$p4->SetColor('blue');
-$graph->AddY(2,$p4);
-$graph->ynaxis[2]->SetColor('blue');
-
-// Output line
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/negbarvalueex01.php b/#jpgraph/src/Examples/negbarvalueex01.php
deleted file mode 100644
index f825a59c..00000000
--- a/#jpgraph/src/Examples/negbarvalueex01.php
+++ /dev/null
@@ -1,39 +0,0 @@
-img->SetMargin(60,30,40,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-
-// DIsplay value at top of each bar
-$bplot->value->Show();
-$bplot->SetShadow();
-
-$graph->Add($bplot);
-
-// Position the scale at the min of the other axis
-$graph->xaxis->SetPos("min");
-
-// Add 10% more space at top and bottom of graph
-$graph->yscale->SetGrace(10,10);
-
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,12);
-$graph->title->Set("Example of bar plot with absolute labels");
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_NORMAL,16);
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/new1.gif b/#jpgraph/src/Examples/new1.gif
deleted file mode 100644
index 7c8a2962..00000000
Binary files a/#jpgraph/src/Examples/new1.gif and /dev/null differ
diff --git a/#jpgraph/src/Examples/new2.gif b/#jpgraph/src/Examples/new2.gif
deleted file mode 100644
index b9620d74..00000000
Binary files a/#jpgraph/src/Examples/new2.gif and /dev/null differ
diff --git a/#jpgraph/src/Examples/new_bar1.php b/#jpgraph/src/Examples/new_bar1.php
deleted file mode 100644
index 589b4c38..00000000
--- a/#jpgraph/src/Examples/new_bar1.php
+++ /dev/null
@@ -1,49 +0,0 @@
-SetScale("textlin");
-
-$theme_class=new UniversalTheme;
-$graph->SetTheme($theme_class);
-
-$graph->yaxis->SetTickPositions(array(0,30,60,90,120,150), array(15,45,75,105,135));
-$graph->SetBox(false);
-
-$graph->ygrid->SetFill(false);
-$graph->xaxis->SetTickLabels(array('A','B','C','D'));
-$graph->yaxis->HideLine(false);
-$graph->yaxis->HideTicks(false,false);
-
-// Create the bar plots
-$b1plot = new BarPlot($data1y);
-$b2plot = new BarPlot($data2y);
-$b3plot = new BarPlot($data3y);
-
-// Create the grouped bar plot
-$gbplot = new GroupBarPlot(array($b1plot,$b2plot,$b3plot));
-// ...and add it to the graPH
-$graph->Add($gbplot);
-
-
-$b1plot->SetColor("white");
-$b1plot->SetFillColor("#cc1111");
-
-$b2plot->SetColor("white");
-$b2plot->SetFillColor("#11cccc");
-
-$b3plot->SetColor("white");
-$b3plot->SetFillColor("#1111cc");
-
-$graph->title->Set("Bar Plots");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/new_bar3.php b/#jpgraph/src/Examples/new_bar3.php
deleted file mode 100644
index 2d8b9e65..00000000
--- a/#jpgraph/src/Examples/new_bar3.php
+++ /dev/null
@@ -1,39 +0,0 @@
-SetScale("textlin");
-
-//$theme_class="DefaultTheme";
-//$graph->SetTheme(new $theme_class());
-
-// set major and minor tick positions manually
-$graph->yaxis->SetTickPositions(array(0,30,60,90,120,150), array(15,45,75,105,135));
-$graph->SetBox(false);
-
-//$graph->ygrid->SetColor('gray');
-$graph->ygrid->SetFill(false);
-$graph->xaxis->SetTickLabels(array('A','B','C','D'));
-$graph->yaxis->HideLine(false);
-$graph->yaxis->HideTicks(false,false);
-
-// Create the bar plots
-$b1plot = new BarPlot($datay);
-
-// ...and add it to the graPH
-$graph->Add($b1plot);
-
-
-$b1plot->SetColor("white");
-$b1plot->SetFillGradient("#4B0082","white",GRAD_LEFT_REFLECTION);
-$b1plot->SetWidth(45);
-$graph->title->Set("Bar Gradient(Left reflection)");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/new_bar4.php b/#jpgraph/src/Examples/new_bar4.php
deleted file mode 100644
index 8415c09f..00000000
--- a/#jpgraph/src/Examples/new_bar4.php
+++ /dev/null
@@ -1,43 +0,0 @@
-SetScale("textlin");
-
-$theme_class=new UniversalTheme;
-$graph->SetTheme($theme_class);
-
-$graph->Set90AndMargin(50,40,40,40);
-$graph->img->SetAngle(90);
-
-// set major and minor tick positions manually
-$graph->SetBox(false);
-
-//$graph->ygrid->SetColor('gray');
-$graph->ygrid->Show(false);
-$graph->ygrid->SetFill(false);
-$graph->xaxis->SetTickLabels(array('A','B','C','D','E','F'));
-$graph->yaxis->HideLine(false);
-$graph->yaxis->HideTicks(false,false);
-
-// For background to be gradient, setfill is needed first.
-$graph->SetBackgroundGradient('#00CED1', '#FFFFFF', GRAD_HOR, BGRAD_PLOT);
-
-// Create the bar plots
-$b1plot = new BarPlot($datay);
-
-// ...and add it to the graPH
-$graph->Add($b1plot);
-
-$b1plot->SetWeight(0);
-$b1plot->SetFillGradient("#808000","#90EE90",GRAD_HOR);
-$b1plot->SetWidth(17);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/new_bar6.php b/#jpgraph/src/Examples/new_bar6.php
deleted file mode 100644
index a439ec76..00000000
--- a/#jpgraph/src/Examples/new_bar6.php
+++ /dev/null
@@ -1,103 +0,0 @@
-SetScale("textlin");
-$graph->SetY2Scale("lin",0,90);
-$graph->SetY2OrderBack(false);
-
-$graph->SetMargin(35,50,20,5);
-
-$theme_class = new UniversalTheme;
-$graph->SetTheme($theme_class);
-
-$graph->yaxis->SetTickPositions(array(0,50,100,150,200,250,300,350), array(25,75,125,175,275,325));
-$graph->y2axis->SetTickPositions(array(30,40,50,60,70,80,90));
-
-$months = $gDateLocale->GetShortMonth();
-$months = array_merge(array_slice($months,3,9), array_slice($months,0,3));
-$graph->SetBox(false);
-
-$graph->ygrid->SetFill(false);
-$graph->xaxis->SetTickLabels(array('A','B','C','D'));
-$graph->yaxis->HideLine(false);
-$graph->yaxis->HideTicks(false,false);
-// Setup month as labels on the X-axis
-$graph->xaxis->SetTickLabels($months);
-
-// Create the bar plots
-$b1plot = new BarPlot($data1y);
-$b2plot = new BarPlot($data2y);
-
-$b3plot = new BarPlot($data3y);
-$b4plot = new BarPlot($data4y);
-$b5plot = new BarPlot($data5y);
-
-$lplot = new LinePlot($data6y);
-
-// Create the grouped bar plot
-$gbbplot = new AccBarPlot(array($b3plot,$b4plot,$b5plot));
-$gbplot = new GroupBarPlot(array($b1plot,$b2plot,$gbbplot));
-
-// ...and add it to the graPH
-$graph->Add($gbplot);
-$graph->AddY2($lplot);
-
-$b1plot->SetColor("#0000CD");
-$b1plot->SetFillColor("#0000CD");
-$b1plot->SetLegend("Cliants");
-
-$b2plot->SetColor("#B0C4DE");
-$b2plot->SetFillColor("#B0C4DE");
-$b2plot->SetLegend("Machines");
-
-$b3plot->SetColor("#8B008B");
-$b3plot->SetFillColor("#8B008B");
-$b3plot->SetLegend("First Track");
-
-$b4plot->SetColor("#DA70D6");
-$b4plot->SetFillColor("#DA70D6");
-$b4plot->SetLegend("All");
-
-$b5plot->SetColor("#9370DB");
-$b5plot->SetFillColor("#9370DB");
-$b5plot->SetLegend("Single Only");
-
-$lplot->SetBarCenter();
-$lplot->SetColor("yellow");
-$lplot->SetLegend("Houses");
-$lplot->mark->SetType(MARK_X,'',1.0);
-$lplot->mark->SetWeight(2);
-$lplot->mark->SetWidth(8);
-$lplot->mark->setColor("yellow");
-$lplot->mark->setFillColor("yellow");
-
-$graph->legend->SetFrameWeight(1);
-$graph->legend->SetColumns(6);
-$graph->legend->SetColor('#4E4E4E','#00A78A');
-
-$band = new PlotBand(VERTICAL,BAND_RDIAG,11,"max",'khaki4');
-$band->ShowFrame(true);
-$band->SetOrder(DEPTH_BACK);
-$graph->Add($band);
-
-$graph->title->Set("Combineed Line and Bar plots");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/new_line1.php b/#jpgraph/src/Examples/new_line1.php
deleted file mode 100644
index 7a8ae660..00000000
--- a/#jpgraph/src/Examples/new_line1.php
+++ /dev/null
@@ -1,57 +0,0 @@
-SetScale("textlin");
-
-$theme_class=new UniversalTheme;
-
-$graph->SetTheme($theme_class);
-$graph->img->SetAntiAliasing(false);
-$graph->title->Set('Filled Y-grid');
-$graph->SetBox(false);
-
-$graph->img->SetAntiAliasing();
-
-$graph->yaxis->HideZeroLabel();
-$graph->yaxis->HideLine(false);
-$graph->yaxis->HideTicks(false,false);
-
-$graph->xgrid->Show();
-$graph->xgrid->SetLineStyle("solid");
-$graph->xaxis->SetTickLabels(array('A','B','C','D'));
-$graph->xgrid->SetColor('#E3E3E3');
-/* $graph->SetBackgroundImage("tiger_bkg.png",BGIMG_FILLPLOT); */
-
-// Create the first line
-$p1 = new LinePlot($datay1);
-$graph->Add($p1);
-$p1->SetColor("#6495ED");
-$p1->SetLegend('Line 1');
-
-// Create the second line
-$p2 = new LinePlot($datay2);
-$graph->Add($p2);
-$p2->SetColor("#B22222");
-$p2->SetLegend('Line 2');
-
-// Create the third line
-$p3 = new LinePlot($datay3);
-$graph->Add($p3);
-$p3->SetColor("#FF1493");
-$p3->SetLegend('Line 3');
-
-$graph->legend->SetFrameWeight(1);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/new_line2.php b/#jpgraph/src/Examples/new_line2.php
deleted file mode 100644
index 8ccd2710..00000000
--- a/#jpgraph/src/Examples/new_line2.php
+++ /dev/null
@@ -1,57 +0,0 @@
-SetScale("textlin");
-
-$theme_class= new UniversalTheme;
-$graph->SetTheme($theme_class);
-
-$graph->title->Set('Background Image');
-$graph->SetBox(false);
-
-$graph->yaxis->HideZeroLabel();
-$graph->yaxis->HideLine(false);
-$graph->yaxis->HideTicks(false,false);
-
-$graph->xaxis->SetTickLabels(array('A','B','C','D'));
-$graph->ygrid->SetFill(false);
-$graph->SetBackgroundImage("tiger_bkg.png",BGIMG_FILLFRAME);
-
-$p1 = new LinePlot($datay1);
-$graph->Add($p1);
-
-$p2 = new LinePlot($datay2);
-$graph->Add($p2);
-
-$p1->SetColor("#55bbdd");
-$p1->SetLegend('Line 1');
-$p1->mark->SetType(MARK_FILLEDCIRCLE,'',1.0);
-$p1->mark->SetColor('#55bbdd');
-$p1->mark->SetFillColor('#55bbdd');
-$p1->SetCenter();
-
-$p2->SetColor("#aaaaaa");
-$p2->SetLegend('Line 2');
-$p2->mark->SetType(MARK_UTRIANGLE,'',1.0);
-$p2->mark->SetColor('#aaaaaa');
-$p2->mark->SetFillColor('#aaaaaa');
-$p2->value->SetMargin(14);
-$p2->SetCenter();
-
-$graph->legend->SetFrameWeight(1);
-$graph->legend->SetColor('#4E4E4E','#00A78A');
-$graph->legend->SetMarkAbsSize(8);
-
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/new_line3.php b/#jpgraph/src/Examples/new_line3.php
deleted file mode 100644
index cc0ab3e5..00000000
--- a/#jpgraph/src/Examples/new_line3.php
+++ /dev/null
@@ -1,46 +0,0 @@
-SetScale("textlin",0,50);
-
-//$theme_class=new DefaultTheme;
-//$graph->SetTheme($theme_class);
-
-$graph->title->Set("Filled Area");
-
-$graph->SetBox(false);
-$graph->yaxis->HideLine(false);
-$graph->yaxis->HideTicks(false,false);
-$graph->yaxis->HideZeroLabel();
-
-$graph->xaxis->SetTickLabels(array('A','B','C','D','E','F','G'));
-
-// Create the plot
-$p1 = new LinePlot($datay1);
-$graph->Add($p1);
-
-$p2 = new LinePlot($datay2);
-$graph->Add($p2);
-
-// Use an image of favourite car as marker
-$p1->mark->SetType(MARK_IMG,'rose.gif',1.0);
-$p1->SetLegend('rose');
-$p1->SetColor('#CD5C5C');
-
-$p2->mark->SetType(MARK_IMG,'sunflower.gif',1.0);
-$p2->SetLegend('sunflower');
-$p2->SetColor('#CD5C5C');
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/new_line4.php b/#jpgraph/src/Examples/new_line4.php
deleted file mode 100644
index f50921ea..00000000
--- a/#jpgraph/src/Examples/new_line4.php
+++ /dev/null
@@ -1,49 +0,0 @@
-SetScale("textlin",0,50);
-
-$theme_class= new UniversalTheme;
-$graph->SetTheme($theme_class);
-
-$graph->title->Set("Line Plots with Markers");
-
-$graph->SetBox(false);
-$graph->ygrid->SetFill(false);
-$graph->yaxis->HideLine(false);
-$graph->yaxis->HideTicks(false,false);
-$graph->yaxis->HideZeroLabel();
-
-$graph->xaxis->SetTickLabels(array('A','B','C','D','E','F','G'));
-// Create the plot
-$p1 = new LinePlot($datay1);
-$graph->Add($p1);
-
-$p2 = new LinePlot($datay2);
-$graph->Add($p2);
-
-// Use an image of favourite car as marker
-$p1->mark->SetType(MARK_IMG,'new1.gif',0.8);
-$p1->SetColor('#aadddd');
-$p1->value->SetFormat('%d');
-$p1->value->Show();
-$p1->value->SetColor('#55bbdd');
-
-$p2->mark->SetType(MARK_IMG,'new2.gif',0.8);
-$p2->SetColor('#ddaa99');
-$p2->value->SetFormat('%d');
-$p2->value->Show();
-$p2->value->SetColor('#55bbdd');
-
-
-$graph->Stroke();
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/new_line5.php b/#jpgraph/src/Examples/new_line5.php
deleted file mode 100644
index 7a234a8c..00000000
--- a/#jpgraph/src/Examples/new_line5.php
+++ /dev/null
@@ -1,44 +0,0 @@
-SetScale("intlin",0,$aYMax=50);
-
-$theme_class= new UniversalTheme;
-$graph->SetTheme($theme_class);
-
-$graph->SetMargin(40,40,50,40);
-
-$graph->title->Set('Inverted Y-axis');
-$graph->SetBox(false);
-$graph->yaxis->HideLine(false);
-$graph->yaxis->HideTicks(false,false);
-
-// For background to be gradient, setfill is needed first.
-$graph->ygrid->SetFill(true,'#FFFFFF@0.5','#FFFFFF@0.5');
-$graph->SetBackgroundGradient('#FFFFFF', '#00FF7F', GRAD_HOR, BGRAD_PLOT);
-
-$graph->xaxis->SetTickLabels(array('G','F','E','D','C','B','A'));
-$graph->xaxis->SetLabelMargin(20);
-$graph->yaxis->SetLabelMargin(20);
-
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-$graph->img->SetAngle(180);
-
-// Create the line
-$p1 = new LinePlot($datay);
-$graph->Add($p1);
-
-$p1->SetFillGradient('#FFFFFF','#F0F8FF');
-$p1->SetColor('#aadddd');
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/new_pie1.php b/#jpgraph/src/Examples/new_pie1.php
deleted file mode 100644
index 3c395e88..00000000
--- a/#jpgraph/src/Examples/new_pie1.php
+++ /dev/null
@@ -1,28 +0,0 @@
-SetTheme(new $theme_class());
-
-// Set A title for the plot
-$graph->title->Set("A Simple Pie Plot");
-$graph->SetBox(true);
-
-// Create
-$p1 = new PiePlot($data);
-$graph->Add($p1);
-
-$p1->ShowBorder();
-$p1->SetColor('black');
-$p1->SetSliceColors(array('#1E90FF','#2E8B57','#ADFF2F','#DC143C','#BA55D3'));
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/new_pie2.php b/#jpgraph/src/Examples/new_pie2.php
deleted file mode 100644
index 6e94cbff..00000000
--- a/#jpgraph/src/Examples/new_pie2.php
+++ /dev/null
@@ -1,55 +0,0 @@
-SetShadow();
-
-$theme_class= new UniversalTheme;
-//$graph->SetTheme($theme_class);
-
-// Set A title for the plot
-$graph->title->Set("Multiple - Pie plot");
-
-// Create plots
-$size=0.13;
-$p1 = new PiePlot($data);
-$graph->Add($p1);
-
-$p1->SetSize($size);
-$p1->SetCenter(0.25,0.32);
-$p1->SetSliceColors(array('#1E90FF','#2E8B57','#ADFF2F','#DC143C','#BA55D3'));
-$p1->title->Set("2005");
-
-$p2 = new PiePlot($data);
-$graph->Add($p2);
-
-$p2->SetSize($size);
-$p2->SetCenter(0.65,0.32);
-$p2->SetSliceColors(array('#1E90FF','#2E8B57','#ADFF2F','#DC143C','#BA55D3'));
-$p2->title->Set("2006");
-
-$p3 = new PiePlot($data);
-$graph->Add($p3);
-
-$p3->SetSize($size);
-$p3->SetCenter(0.25,0.75);
-$p3->SetSliceColors(array('#6495ED','#2E8B57','#ADFF2F','#DC143C','#BA55D3'));
-$p3->title->Set("2007");
-
-$p4 = new PiePlot($data);
-$graph->Add($p4);
-
-$p4->SetSize($size);
-$p4->SetCenter(0.65,0.75);
-$p4->SetSliceColors(array('#6495ED','#2E8B57','#ADFF2F','#DC143C','#BA55D3'));
-$p4->title->Set("2008");
-
-
-$graph->Stroke();
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/new_pie3.php b/#jpgraph/src/Examples/new_pie3.php
deleted file mode 100644
index 81bc0f2a..00000000
--- a/#jpgraph/src/Examples/new_pie3.php
+++ /dev/null
@@ -1,28 +0,0 @@
-SetTheme($theme_class);
-
-// Set A title for the plot
-$graph->title->Set("A Simple 3D Pie Plot");
-
-// Create
-$p1 = new PiePlot3D($data);
-$graph->Add($p1);
-
-$p1->ShowBorder();
-$p1->SetColor('black');
-$p1->SetSliceColors(array('#1E90FF','#2E8B57','#ADFF2F','#BA55D3'));
-$p1->ExplodeSlice(1);
-$graph->Stroke();
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/new_pie4.php b/#jpgraph/src/Examples/new_pie4.php
deleted file mode 100644
index 571f5ae6..00000000
--- a/#jpgraph/src/Examples/new_pie4.php
+++ /dev/null
@@ -1,65 +0,0 @@
-SetTheme(new $theme_class());
-
-// Setup background
-$graph->SetBackgroundImage('worldmap1.jpg',BGIMG_FILLFRAME);
-
-// Setup title
-$graph->title->Set("Pie plots with background image");
-$graph->title->SetColor('white');
-$graph->SetTitleBackground('#4169E1',TITLEBKG_STYLE2,TITLEBKG_FRAME_FULL,'#4169E1',10,10,true);
-
-$p = array();
-// Create the plots
-for( $i=0; $i < $n; ++$i ) {
- $p[] = new PiePlot3D($data);
-}
-for( $i=0; $i < $n; ++$i ) {
- $graph->Add($p[$i]);
-}
-
-// Position the four pies and change color
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->SetCenter($piepos[2*$i],$piepos[2*$i+1]);
- $p[$i]->SetSliceColors(array('#1E90FF','#2E8B57','#ADFF2F','#DC143C','#BA55D3'));
-}
-
-// Set the titles
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->title->Set($titles[$i]);
- #$p[$i]->title->SetFont(FF_ARIAL,FS_NORMAL,8);
-}
-
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->value->Show(false);
-}
-
-// Size of pie in fraction of the width of the graph
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->SetSize(0.13);
-}
-
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->SetEdge(false);
- $p[$i]->ExplodeSlice(1,7);
-}
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/new_step1.php b/#jpgraph/src/Examples/new_step1.php
deleted file mode 100644
index 7bd0ce50..00000000
--- a/#jpgraph/src/Examples/new_step1.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetScale("intlin",0,$aYMax=50);
-$theme_class=new UniversalTheme;
-$graph->SetTheme($theme_class);
-
-$graph->SetBox(false);
-
-$graph->title->Set('Step Line');
-$graph->ygrid->Show(true);
-$graph->xgrid->Show(false);
-$graph->yaxis->HideZeroLabel();
-$graph->ygrid->SetFill(true,'#FFFFFF@0.5','#FFFFFF@0.5');
-$graph->SetBackgroundGradient('blue', '#55eeff', GRAD_HOR, BGRAD_PLOT);
-$graph->xaxis->SetTickLabels(array('A','B','C','D','E','F','G'));
-
-// Create the line
-$p1 = new LinePlot($datay);
-$graph->Add($p1);
-
-$p1->SetFillGradient('yellow','red');
-$p1->SetStepStyle();
-$p1->SetColor('#808000');
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/nullvalueex01.php b/#jpgraph/src/Examples/nullvalueex01.php
deleted file mode 100644
index 33088117..00000000
--- a/#jpgraph/src/Examples/nullvalueex01.php
+++ /dev/null
@@ -1,56 +0,0 @@
-img->SetMargin(40,150,40,80);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-//Setup title
-$graph->title->Set("Line plot with null values");
-
-// Use built in font
-$graph->title->SetFont(FF_ARIAL,FS_NORMAL,14);
-
-// Slightly adjust the legend from it's default position
-$graph->legend->Pos(0.03,0.5,"right","center");
-$graph->legend->SetFont(FF_FONT1,FS_BOLD);
-
-// Setup X-scale
-$graph->xaxis->SetTickLabels($datax);
-$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->xaxis->SetLabelAngle(45);
-
-// Create the first line
-$p1 = new LinePlot($datay);
-$p1->mark->SetType(MARK_FILLEDCIRCLE);
-$p1->mark->SetFillColor("red");
-$p1->mark->SetWidth(4);
-$p1->SetColor("blue");
-$p1->SetCenter();
-$p1->SetLegend("Undefined\nvariant 1");
-$graph->Add($p1);
-
-// ... and the second
-$p2 = new LinePlot($data2y);
-$p2->mark->SetType(MARK_STAR);
-$p2->mark->SetFillColor("red");
-$p2->mark->SetWidth(4);
-$p2->SetColor("red");
-$p2->SetCenter();
-$p2->SetLegend("Undefined\nvariant 2");
-$graph->Add($p2);
-
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/ocean_example.php b/#jpgraph/src/Examples/ocean_example.php
deleted file mode 100644
index 8a09d59c..00000000
--- a/#jpgraph/src/Examples/ocean_example.php
+++ /dev/null
@@ -1,58 +0,0 @@
- array (0 => 79, 1 => -25, 2 => -7, 3 => 85, 4 => -26, 5 => -32, ),
- 1 => array (0 => 76, 1 => 51, 2 => 86, 3 => 12, 4 => -7, 5 => 94, ),
- 2 => array (0 => 49, 1 => 38, 2 => 7, 3 => -40, 4 => 9, 5 => -7, ),
- 3 => array ( 0 => 69, 1 => 96, 2 => 49, 3 => 7, 4 => 92, 5 => -38, ),
- 4 => array ( 0 => 68, 1 => 16, 2 => 82, 3 => -49, 4 => 50, 5 => 7, ),
- 5 => array ( 0 => -37, 1 => 28, 2 => 32, 3 => 6, 4 => 13, 5 => 57, ),
- 6 => array ( 0 => 24, 1 => -11, 2 => 7, 3 => 10, 4 => 51, 5 => 51, ),
- 7 => array ( 0 => 3, 1 => -1, 2 => -12, 3 => 61, 4 => 10, 5 => 47, ),
- 8 => array ( 0 => -47, 1 => -21, 2 => 43, 3 => 53, 4 => 36, 5 => 34, ),
-);
-
-
-// Create the graph. These two calls are always required
-$graph = new Graph(400,300);
-
-$graph->SetScale("textlin");
-if ($theme) {
- $graph->SetTheme(new $theme());
-}
-$theme_class = new OceanTheme;
-$graph->SetTheme($theme_class);
-
-$plot = array();
-// Create the bar plots
-for ($i = 0; $i < 4; $i++) {
- $plot[$i] = new BarPlot($data[$i]);
- $plot[$i]->SetLegend('plot'.($i+1));
-}
-//$acc1 = new AccBarPlot(array($plot[0], $plot[1]));
-//$acc1->value->Show();
-$gbplot = new GroupBarPlot(array($plot[2], $plot[1] ));
-
-for ($i = 4; $i < 8; $i++) {
- $plot[$i] = new LinePlot($data[$i]);
- $plot[$i]->SetLegend('plot'.$i);
- $plot[$i]->value->Show();
-}
-
-$graph->Add($gbplot);
-$graph->Add($plot[4]);
-
-$title = "OceanTheme Example";
-$title = mb_convert_encoding($title,'UTF-8');
-$graph->title->Set($title);
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/odoex00.php b/#jpgraph/src/Examples/odoex00.php
deleted file mode 100644
index e8cef552..00000000
--- a/#jpgraph/src/Examples/odoex00.php
+++ /dev/null
@@ -1,47 +0,0 @@
-SetColor('white');
-$graph->SetMarginColor('white');
-$graph->SetFrame(false);
-
-//---------------------------------------------------------------------
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-//---------------------------------------------------------------------
-$odo = new Odometer();
-
-//---------------------------------------------------------------------
-// Set display value for the odometer
-//---------------------------------------------------------------------
-$odo->needle->Set(40);
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex01.php b/#jpgraph/src/Examples/odoex01.php
deleted file mode 100644
index 3d29aa02..00000000
--- a/#jpgraph/src/Examples/odoex01.php
+++ /dev/null
@@ -1,69 +0,0 @@
-title->Set("Odometer title");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("2002-02-13");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("First caption row\n... second row");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-//---------------------------------------------------------------------
-$odo = new Odometer();
-
-//---------------------------------------------------------------------
-// Set color indication between values 80 and 100 as red
-//---------------------------------------------------------------------
-$odo->AddIndication(80,100,"red");
-
-//---------------------------------------------------------------------
-// Set display value for the odometer
-//---------------------------------------------------------------------
-$odo->needle->Set(30);
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex010.php b/#jpgraph/src/Examples/odoex010.php
deleted file mode 100644
index 3c70ad2f..00000000
--- a/#jpgraph/src/Examples/odoex010.php
+++ /dev/null
@@ -1,75 +0,0 @@
-AddIndication(80,100,"red");
-$odo2->AddIndication(20,30,"green");
-$odo2->AddIndication(65,100,"red");
-$odo3->AddIndication(60,90,"yellow");
-$odo3->AddIndication(90,100,"red");
-
-//---------------------------------------------------------------------
-// Set display values for the odometers
-//---------------------------------------------------------------------
-$odo1->needle->Set(17);
-$odo2->needle->Set(47);
-$odo3->needle->Set(86);
-
-$odo1->needle->SetFillColor("blue");
-$odo2->needle->SetFillColor("yellow:0.7");
-$odo3->needle->SetFillColor("black");
-$odo3->needle->SetColor("black");
-
-
-//---------------------------------------------------------------------
-// Set scale label properties
-//---------------------------------------------------------------------
-$odo1->scale->label->SetColor("navy");
-$odo2->scale->label->SetColor("blue");
-$odo3->scale->label->SetColor("darkred");
-
-$odo1->scale->label->SetFont(FF_FONT1);
-$odo2->scale->label->SetFont(FF_FONT2,FS_BOLD);
-$odo3->scale->label->SetFont(FF_ARIAL,FS_BOLD,11);
-
-//---------------------------------------------------------------------
-// Add the odometers to the graph using a vertical layout
-//---------------------------------------------------------------------
-$l1 = new LayoutVert( array($odo1,$odo2,$odo3) ) ;
-$graph->Add( $l1 );
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex011.php b/#jpgraph/src/Examples/odoex011.php
deleted file mode 100644
index cc74f4f7..00000000
--- a/#jpgraph/src/Examples/odoex011.php
+++ /dev/null
@@ -1,108 +0,0 @@
-SetShadow();
-
-//---------------------------------------------------------------------
-// Specify title and subtitle using default fonts
-// * Note each title may be multilines by using a '\n' as a line
-// divider.
-//---------------------------------------------------------------------
-$graph->title->Set("Result from 2002");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("O1 - W-Site");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("Fig1. Values within 85%\nconfidence intervall");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// We will display three odometers stacked vertically
-// The first thing to do is to create them
-//---------------------------------------------------------------------
-$odo1 = new Odometer();
-$odo2 = new Odometer();
-$odo3 = new Odometer();
-
-
-//---------------------------------------------------------------------
-// Set caption for each odometer
-//---------------------------------------------------------------------
-$odo1->caption->Set("April");
-$odo1->caption->SetFont(FF_FONT2,FS_BOLD);
-$odo2->caption->Set("May");
-$odo2->caption->SetFont(FF_FONT2,FS_BOLD);
-$odo3->caption->Set("June");
-$odo3->caption->SetFont(FF_FONT2,FS_BOLD);
-
-//---------------------------------------------------------------------
-// Set Indicator bands for the odometers
-//---------------------------------------------------------------------
-$odo1->AddIndication(80,100,"red");
-$odo2->AddIndication(20,30,"green");
-$odo2->AddIndication(65,100,"red");
-$odo3->AddIndication(60,90,"yellow");
-$odo3->AddIndication(90,100,"red");
-
-//---------------------------------------------------------------------
-// Set display values for the odometers
-//---------------------------------------------------------------------
-$odo1->needle->Set(17);
-$odo2->needle->Set(47);
-$odo3->needle->Set(86);
-
-$odo1->needle->SetFillColor("blue");
-$odo2->needle->SetFillColor("yellow:0.7");
-$odo3->needle->SetFillColor("black");
-$odo3->needle->SetColor("black");
-
-
-//---------------------------------------------------------------------
-// Set scale label properties
-//---------------------------------------------------------------------
-$odo1->scale->label->SetColor("navy");
-$odo2->scale->label->SetColor("blue");
-$odo3->scale->label->SetColor("darkred");
-
-$odo1->scale->label->SetFont(FF_FONT1);
-$odo2->scale->label->SetFont(FF_FONT2,FS_BOLD);
-$odo3->scale->label->SetFont(FF_ARIAL,FS_BOLD,10);
-
-//---------------------------------------------------------------------
-// Add the odometers to the graph using a vertical layout
-//---------------------------------------------------------------------
-$l1 = new LayoutVert( array($odo1,$odo2,$odo3) ) ;
-$graph->Add( $l1 );
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex012.php b/#jpgraph/src/Examples/odoex012.php
deleted file mode 100644
index b54f773d..00000000
--- a/#jpgraph/src/Examples/odoex012.php
+++ /dev/null
@@ -1,119 +0,0 @@
-SetShadow();
-
-//---------------------------------------------------------------------
-// Specify title and subtitle using default fonts
-// * Note each title may be multilines by using a '\n' as a line
-// divider.
-//---------------------------------------------------------------------
-$graph->title->Set("Result from 2002");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("O1 - W-Site");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("Fig1. Values within 85%\nconfidence intervall");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// We will display two columns where the first column has
-// three odometers (same as in example 11) and the second column
-// has two odoemters
-// The first thing to do is to create them
-//---------------------------------------------------------------------
-$odo1 = new Odometer();
-$odo2 = new Odometer();
-$odo3 = new Odometer();
-$odo4 = new Odometer();
-$odo5 = new Odometer();
-
-
-//---------------------------------------------------------------------
-// Set caption for each odometer
-//---------------------------------------------------------------------
-$odo1->caption->Set("April");
-$odo1->caption->SetFont(FF_ARIAL,FS_BOLD);
-$odo2->caption->Set("May");
-$odo2->caption->SetFont(FF_FONT2,FS_BOLD);
-$odo3->caption->Set("June");
-$odo3->caption->SetFont(FF_FONT2,FS_BOLD);
-$odo4->caption->Set("Daily low average");
-$odo4->caption->SetFont(FF_FONT1,FS_BOLD);
-$odo5->caption->Set("Daily high average");
-$odo5->caption->SetFont(FF_FONT1,FS_BOLD);
-
-//---------------------------------------------------------------------
-// Set Indicator bands for the odometers
-//---------------------------------------------------------------------
-$odo1->AddIndication(80,100,"red");
-$odo2->AddIndication(20,30,"green");
-$odo2->AddIndication(65,100,"red");
-$odo3->AddIndication(60,90,"yellow");
-$odo3->AddIndication(90,100,"red");
-
-//---------------------------------------------------------------------
-// Set display values for the odometers
-//---------------------------------------------------------------------
-$odo1->needle->Set(17);
-$odo2->needle->Set(47);
-$odo3->needle->Set(86);
-$odo4->needle->Set(22);
-$odo5->needle->Set(77);
-
-$odo1->needle->SetFillColor("blue");
-$odo2->needle->SetFillColor("yellow:0.7");
-$odo3->needle->SetFillColor("black");
-$odo3->needle->SetColor("black");
-
-
-//---------------------------------------------------------------------
-// Set scale label properties
-//---------------------------------------------------------------------
-$odo1->scale->label->SetColor("navy");
-$odo2->scale->label->SetColor("blue");
-$odo3->scale->label->SetColor("darkred");
-
-$odo1->scale->label->SetFont(FF_FONT1);
-$odo2->scale->label->SetFont(FF_FONT2,FS_BOLD);
-$odo3->scale->label->SetFont(FF_ARIAL,FS_BOLD,10);
-
-//---------------------------------------------------------------------
-// Add the odometers to the graph using a vertical layout
-//---------------------------------------------------------------------
-$l1 = new LayoutVert( array($odo1,$odo2,$odo3) ) ;
-$l2 = new LayoutVert( array($odo4,$odo5) ) ;
-$l3 = new LayoutHor( array($l1,$l2) );
-$graph->Add( $l3 );
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex02.php b/#jpgraph/src/Examples/odoex02.php
deleted file mode 100644
index 47ccc6ba..00000000
--- a/#jpgraph/src/Examples/odoex02.php
+++ /dev/null
@@ -1,71 +0,0 @@
-title->Set("Odometer title");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("2002-02-13");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("First caption row\n... second row");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-//---------------------------------------------------------------------
-$odo = new Odometer();
-
-//---------------------------------------------------------------------
-// Set color indication
-//---------------------------------------------------------------------
-$odo->AddIndication(0,50,"green");
-$odo->AddIndication(50,80,"yellow");
-$odo->AddIndication(80,100,"red");
-
-//---------------------------------------------------------------------
-// Set display value for the odometer
-//---------------------------------------------------------------------
-$odo->needle->Set(30);
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex03.php b/#jpgraph/src/Examples/odoex03.php
deleted file mode 100644
index 91ca401c..00000000
--- a/#jpgraph/src/Examples/odoex03.php
+++ /dev/null
@@ -1,83 +0,0 @@
-SetShadow();
-
-//---------------------------------------------------------------------
-// Specify title and subtitle using default fonts
-// * Note each title may be multilines by using a '\n' as a line
-// divider.
-//---------------------------------------------------------------------
-$graph->title->Set("Odometer title");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("2002-02-13");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("First caption row\n... second row");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-//---------------------------------------------------------------------
-$odo = new Odometer();
-
-//---------------------------------------------------------------------
-// Set color indication
-//---------------------------------------------------------------------
-$odo->AddIndication(0,50,"green");
-$odo->AddIndication(50,80,"yellow");
-$odo->AddIndication(80,100,"red");
-
-//---------------------------------------------------------------------
-// Adjust scale ticks to be shown at 10 steps interval and scale
-// labels at every second tick
-//---------------------------------------------------------------------
-$odo->scale->SetTicks(10,2);
-
-//---------------------------------------------------------------------
-// Use a bold font for tick labels
-//---------------------------------------------------------------------
-$odo->scale->label->SetFont(FF_FONT1, FS_BOLD);
-
-//---------------------------------------------------------------------
-// Set display value for the odometer
-//---------------------------------------------------------------------
-$odo->needle->Set(30);
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex04.php b/#jpgraph/src/Examples/odoex04.php
deleted file mode 100644
index 9955b7db..00000000
--- a/#jpgraph/src/Examples/odoex04.php
+++ /dev/null
@@ -1,96 +0,0 @@
-title->Set("Odometer title");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("2002-02-13");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("First caption row\n... second row");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-//---------------------------------------------------------------------
-$odo = new Odometer();
-
-//---------------------------------------------------------------------
-// Set color indication
-//---------------------------------------------------------------------
-$odo->AddIndication(0,50,"green");
-$odo->AddIndication(50,80,"yellow");
-$odo->AddIndication(80,100,"red");
-
-//---------------------------------------------------------------------
-// Set the center area that will not be affected by the color bands
-//---------------------------------------------------------------------
-$odo->SetCenterAreaWidth(0.4); // Fraction of radius
-
-//---------------------------------------------------------------------
-// Adjust scale ticks to be shown at 10 steps interval and scale
-// labels at every second tick
-//---------------------------------------------------------------------
-$odo->scale->SetTicks(10,2);
-
-//---------------------------------------------------------------------
-// Use a bold font for tick labels
-//---------------------------------------------------------------------
-$odo->scale->label->SetFont(FF_FONT1, FS_BOLD);
-
-//---------------------------------------------------------------------
-// Set display value for the odometer
-//---------------------------------------------------------------------
-$odo->needle->Set(30);
-
-//---------------------------------------------------------------------
-// Set a new style for the needle
-//---------------------------------------------------------------------
-$odo->needle->SetStyle(NEEDLE_STYLE_MEDIUM_TRIANGLE);
-$odo->needle->SetLength(0.7); // Length as 70% of the radius
-$odo->needle->SetFillColor("orange");
-
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex05.php b/#jpgraph/src/Examples/odoex05.php
deleted file mode 100644
index 379a06e9..00000000
--- a/#jpgraph/src/Examples/odoex05.php
+++ /dev/null
@@ -1,123 +0,0 @@
-SetColor("lightyellow");
-
-//---------------------------------------------------------------------
-// Specify title and subtitle using default fonts
-// * Note each title may be multilines by using a '\n' as a line
-// divider.
-//---------------------------------------------------------------------
-$graph->title->Set("Odometer title");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("2002-02-13");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("First caption row\n... second row");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-//---------------------------------------------------------------------
-$odo = new Odometer();
-
-//---------------------------------------------------------------------
-// Set color indication
-//---------------------------------------------------------------------
-$odo->AddIndication(0,50,"green");
-$odo->AddIndication(50,80,"yellow");
-$odo->AddIndication(80,100,"red");
-
-//---------------------------------------------------------------------
-// Set the center area that will not be affected by the color bands
-//---------------------------------------------------------------------
-$odo->SetCenterAreaWidth(0.4); // Fraction of radius
-
-//---------------------------------------------------------------------
-// Adjust scale ticks to be shown at 10 steps interval and scale
-// labels at every second tick
-//---------------------------------------------------------------------
-$odo->scale->SetTicks(10,2);
-
-//---------------------------------------------------------------------
-// Make the tick marks 2 pixel wide
-//---------------------------------------------------------------------
-$odo->scale->SetTickWeight(2);
-
-//---------------------------------------------------------------------
-// Use a bold font for tick labels
-//---------------------------------------------------------------------
-$odo->scale->label->SetFont(FF_FONT1, FS_BOLD);
-
-//---------------------------------------------------------------------
-// Set display value for the odometer
-//---------------------------------------------------------------------
-$odo->needle->Set(78);
-
-//---------------------------------------------------------------------
-// Specify scale caption. Note that depending on the position of the
-// indicator needle this label might be partially hidden.
-//---------------------------------------------------------------------
-$odo->label->Set("% Passed");
-
-//---------------------------------------------------------------------
-// Set a new style for the needle
-//---------------------------------------------------------------------
-$odo->needle->SetStyle(NEEDLE_STYLE_MEDIUM_TRIANGLE);
-$odo->needle->SetLength(0.7); // Length as 70% of the radius
-$odo->needle->SetFillColor("orange");
-
-//---------------------------------------------------------------------
-// Setup the second indicator needle
-//---------------------------------------------------------------------
-$odo->needle2->Set(24);
-$odo->needle2->SetStyle(NEEDLE_STYLE_SMALL_TRIANGLE);
-$odo->needle2->SetLength(0.55); // Length as 70% of the radius
-$odo->needle2->SetFillColor("lightgray");
-$odo->needle2->Show();
-
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex06.php b/#jpgraph/src/Examples/odoex06.php
deleted file mode 100644
index 305a5eea..00000000
--- a/#jpgraph/src/Examples/odoex06.php
+++ /dev/null
@@ -1,122 +0,0 @@
-SetColor("lightyellow");
-
-//---------------------------------------------------------------------
-// Specify title and subtitle using default fonts
-// * Note each title may be multilines by using a '\n' as a line
-// divider.
-//---------------------------------------------------------------------
-$graph->title->Set("Odometer title");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("2002-02-13");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("First caption row\n... second row");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-//---------------------------------------------------------------------
-$odo = new Odometer(ODO_FULL);
-
-//---------------------------------------------------------------------
-// Set color indication
-//---------------------------------------------------------------------
-$odo->AddIndication(0,50,"green");
-$odo->AddIndication(50,80,"yellow");
-$odo->AddIndication(80,100,"red");
-
-//---------------------------------------------------------------------
-// Set the center area that will not be affected by the color bands
-//---------------------------------------------------------------------
-$odo->SetCenterAreaWidth(0.4); // Fraction of radius
-
-//---------------------------------------------------------------------
-// Adjust scale ticks to be shown at 10 steps interval and scale
-// labels at every second tick
-//---------------------------------------------------------------------
-$odo->scale->SetTicks(10,2);
-
-//---------------------------------------------------------------------
-// Make the tick marks 2 pixel wide
-//---------------------------------------------------------------------
-$odo->scale->SetTickWeight(2);
-
-//---------------------------------------------------------------------
-// Use a bold font for tick labels
-//---------------------------------------------------------------------
-$odo->scale->label->SetFont(FF_FONT1, FS_BOLD);
-
-//---------------------------------------------------------------------
-// Set display value for the odometer
-//---------------------------------------------------------------------
-$odo->needle->Set(78);
-
-//---------------------------------------------------------------------
-// Specify scale caption. Note that depending on the position of the
-// indicator needle this label might be partially hidden.
-//---------------------------------------------------------------------
-$odo->label->Set("% Passed");
-
-//---------------------------------------------------------------------
-// Set a new style for the needle
-//---------------------------------------------------------------------
-$odo->needle->SetStyle(NEEDLE_STYLE_MEDIUM_TRIANGLE);
-$odo->needle->SetLength(0.7); // Length as 70% of the radius
-$odo->needle->SetFillColor("orange");
-
-//---------------------------------------------------------------------
-// Setup the second indicator needle
-//---------------------------------------------------------------------
-$odo->needle2->Set(24);
-$odo->needle2->SetStyle(NEEDLE_STYLE_SMALL_TRIANGLE);
-$odo->needle2->SetLength(0.55); // Length as 70% of the radius
-$odo->needle2->SetFillColor("lightgray");
-$odo->needle2->Show();
-
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex07.php b/#jpgraph/src/Examples/odoex07.php
deleted file mode 100644
index eb86ba3c..00000000
--- a/#jpgraph/src/Examples/odoex07.php
+++ /dev/null
@@ -1,126 +0,0 @@
-SetColor("lightyellow");
-
-//---------------------------------------------------------------------
-// Specify title and subtitle using default fonts
-// * Note each title may be multilines by using a '\n' as a line
-// divider.
-//---------------------------------------------------------------------
-$graph->title->Set("Odometer title");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("2002-02-13");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("First caption row\n... second row");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-//---------------------------------------------------------------------
-$odo = new Odometer(ODO_FULL);
-
-//---------------------------------------------------------------------
-// Set color indication
-//---------------------------------------------------------------------
-$odo->AddIndication(0,50,"green");
-$odo->AddIndication(50,80,"yellow");
-$odo->AddIndication(80,100,"red");
-
-//---------------------------------------------------------------------
-// Set the center area that will not be affected by the color bands
-//---------------------------------------------------------------------
-$odo->SetCenterAreaWidth(0.4); // Fraction of radius
-
-//---------------------------------------------------------------------
-// Adjust scale ticks to be shown at 10 steps interval and scale
-// labels at every second tick
-//---------------------------------------------------------------------
-$odo->scale->SetTicks(10,2);
-
-//---------------------------------------------------------------------
-// Make the tick marks 2 pixel wide
-//---------------------------------------------------------------------
-$odo->scale->SetTickWeight(2);
-
-//---------------------------------------------------------------------
-// Use a bold font for tick labels
-//---------------------------------------------------------------------
-$odo->scale->label->SetFont(FF_FONT1, FS_BOLD);
-
-//---------------------------------------------------------------------
-// Change the start and end angle for the scale
-//---------------------------------------------------------------------
-$odo->scale->SetAngle(20,340);
-
-//---------------------------------------------------------------------
-// Set display value for the odometer
-//---------------------------------------------------------------------
-$odo->needle->Set(64);
-
-//---------------------------------------------------------------------
-// Specify scale caption. Note that depending on the position of the
-// indicator needle this label might be partially hidden.
-//---------------------------------------------------------------------
-$odo->label->Set("% Passed");
-
-//---------------------------------------------------------------------
-// Set a new style for the needle
-//---------------------------------------------------------------------
-$odo->needle->SetStyle(NEEDLE_STYLE_MEDIUM_TRIANGLE);
-$odo->needle->SetLength(0.7); // Length as 70% of the radius
-$odo->needle->SetFillColor("orange");
-
-//---------------------------------------------------------------------
-// Setup the second indicator needle
-//---------------------------------------------------------------------
-$odo->needle2->Set(15);
-$odo->needle2->SetStyle(NEEDLE_STYLE_SMALL_TRIANGLE);
-$odo->needle2->SetLength(0.55); // Length as 70% of the radius
-$odo->needle2->SetFillColor("lightgray");
-$odo->needle2->Show();
-
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex08.php b/#jpgraph/src/Examples/odoex08.php
deleted file mode 100644
index 39f12e7a..00000000
--- a/#jpgraph/src/Examples/odoex08.php
+++ /dev/null
@@ -1,150 +0,0 @@
-SetShadow();
-
-//---------------------------------------------------------------------
-// Change the color of the odometer plotcanvas. NOT the odometer
-// fill color itself.
-//---------------------------------------------------------------------
-$graph->SetColor("lightyellow");
-
-//---------------------------------------------------------------------
-// Change the color of the margin in the graph
-//---------------------------------------------------------------------
-$graph->SetMarginColor("khaki:0.6");
-
-//---------------------------------------------------------------------
-// Specify title and subtitle using default fonts
-// * Note each title may be multilines by using a '\n' as a line
-// divider.
-//---------------------------------------------------------------------
-$graph->title->Set("Odometer title");
-$graph->title->SetColor("white");
-$graph->subtitle->Set("2002-02-13");
-$graph->subtitle->SetColor("white");
-
-//---------------------------------------------------------------------
-// Specify caption.
-// * (This is the text at the bottom of the graph.) The margins will
-// automatically adjust to fit the height of the text. A caption
-// may have multiple lines by including a '\n' character in the
-// string.
-//---------------------------------------------------------------------
-$graph->caption->Set("First caption row\n... second row");
-$graph->caption->SetColor("white");
-
-//---------------------------------------------------------------------
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-//---------------------------------------------------------------------
-$odo = new Odometer(ODO_FULL);
-
-//---------------------------------------------------------------------
-// Set fill color for odometer
-//---------------------------------------------------------------------
-$odo->SetColor("lightblue");
-
-//---------------------------------------------------------------------
-// Set color indication
-//---------------------------------------------------------------------
-$odo->AddIndication(0,50,"green");
-$odo->AddIndication(50,80,"yellow");
-$odo->AddIndication(80,100,"red");
-
-//---------------------------------------------------------------------
-// Set the center area that will not be affected by the color bands
-//---------------------------------------------------------------------
-$odo->SetCenterAreaWidth(0.4); // Fraction of radius
-
-//---------------------------------------------------------------------
-// Adjust scale ticks to be shown at 10 steps interval and scale
-// labels at every second tick
-//---------------------------------------------------------------------
-$odo->scale->SetTicks(10,2);
-
-//---------------------------------------------------------------------
-// Make the tick marks 2 pixel wide
-//---------------------------------------------------------------------
-$odo->scale->SetTickWeight(2);
-
-//---------------------------------------------------------------------
-// Use a bold font for tick labels
-//---------------------------------------------------------------------
-$odo->scale->label->SetFont(FF_FONT1, FS_BOLD);
-
-//---------------------------------------------------------------------
-// Change the start and end angle for the scale
-//---------------------------------------------------------------------
-$odo->scale->SetAngle(20,340);
-
-//---------------------------------------------------------------------
-// Set display value for the odometer
-//---------------------------------------------------------------------
-$odo->needle->Set(64);
-
-//---------------------------------------------------------------------
-// Specify scale caption. Note that depending on the position of the
-// indicator needle this label might be partially hidden.
-//---------------------------------------------------------------------
-$odo->label->Set("% Passed");
-
-//---------------------------------------------------------------------
-// Set a new style for the needle
-//---------------------------------------------------------------------
-$odo->needle->SetStyle(NEEDLE_STYLE_MEDIUM_TRIANGLE);
-$odo->needle->SetLength(0.7); // Length as 70% of the radius
-$odo->needle->SetFillColor("orange");
-
-//---------------------------------------------------------------------
-// Setup the second indicator needle
-//---------------------------------------------------------------------
-$odo->needle2->Set(15);
-$odo->needle2->SetStyle(NEEDLE_STYLE_SMALL_TRIANGLE);
-$odo->needle2->SetLength(0.55); // Length as 70% of the radius
-$odo->needle2->SetFillColor("lightgray");
-
-// Only the first needle is shown by default
-$odo->needle2->Show();
-
-//---------------------------------------------------------------------
-// Add a drop shadow to the indicator needles
-//---------------------------------------------------------------------
-$odo->needle->SetShadow();
-$odo->needle2->SetShadow();
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odoex09.php b/#jpgraph/src/Examples/odoex09.php
deleted file mode 100644
index 9fc9affe..00000000
--- a/#jpgraph/src/Examples/odoex09.php
+++ /dev/null
@@ -1,49 +0,0 @@
-needle->Set(17);
-$odo2->needle->Set(47);
-$odo3->needle->Set(86);
-
-//---------------------------------------------------------------------
-// Add the odometers to the graph using a vertical layout
-//---------------------------------------------------------------------
-$l1 = new LayoutVert( array($odo1,$odo2,$odo3) ) ;
-$graph->Add( $l1 );
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex00.php b/#jpgraph/src/Examples/odotutex00.php
deleted file mode 100644
index 4344292d..00000000
--- a/#jpgraph/src/Examples/odotutex00.php
+++ /dev/null
@@ -1,21 +0,0 @@
-needle->Set(30);
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the client
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/odotutex01.php b/#jpgraph/src/Examples/odotutex01.php
deleted file mode 100644
index ec970cd4..00000000
--- a/#jpgraph/src/Examples/odotutex01.php
+++ /dev/null
@@ -1,21 +0,0 @@
-needle->Set(30);
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the client
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/odotutex02.php b/#jpgraph/src/Examples/odotutex02.php
deleted file mode 100644
index a007c1b1..00000000
--- a/#jpgraph/src/Examples/odotutex02.php
+++ /dev/null
@@ -1,30 +0,0 @@
-title->Set("Result for 2002");
-$graph->title->SetColor("white");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->subtitle->Set("New York Office");
-$graph->subtitle->SetColor("white");
-$graph->caption->Set("Figure 1. Branch results.");
-$graph->caption->SetColor("white");
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer();
-
-// Set display value for the odometer
-$odo->needle->Set(30);
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the client
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/odotutex03.php b/#jpgraph/src/Examples/odotutex03.php
deleted file mode 100644
index 3c0e907c..00000000
--- a/#jpgraph/src/Examples/odotutex03.php
+++ /dev/null
@@ -1,30 +0,0 @@
-title->Set("Result for 2002");
-$graph->title->SetColor("white");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->subtitle->Set("New York Office");
-$graph->subtitle->SetColor("white");
-$graph->caption->Set("Figure 1.This is a very, very\nlong text with multiples lines\nthat are added as a caption.");
-$graph->caption->SetColor("white");
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer();
-
-// Set display value for the odometer
-$odo->needle->Set(30);
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the client
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/odotutex04.php b/#jpgraph/src/Examples/odotutex04.php
deleted file mode 100644
index 60c57fc7..00000000
--- a/#jpgraph/src/Examples/odotutex04.php
+++ /dev/null
@@ -1,40 +0,0 @@
-title->Set("Result for 2002");
-$graph->title->SetColor("white");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->subtitle->Set("New York Office");
-$graph->subtitle->SetColor("white");
-$graph->caption->Set("Figure 1.This is a very, very\nlong text with multiples lines\nthat are added as a caption.");
-$graph->caption->SetColor("white");
-
-// Setup colors
-// Make the border 40% darker than normal "khaki"
-$graph->SetMarginColor("khaki:0.6");
-$graph->SetColor("khaki");
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer();
-
-// Setup colors for odometyer plot
-$odo->SetColor('white');
-$odo->scale->label->SetColor("darkred");
-$odo->needle->SetFillColor("yellow");
-
-// Set display value for the odometer
-$odo->needle->Set(30);
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the client
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/odotutex06.php b/#jpgraph/src/Examples/odotutex06.php
deleted file mode 100644
index 4161e5fa..00000000
--- a/#jpgraph/src/Examples/odotutex06.php
+++ /dev/null
@@ -1,43 +0,0 @@
-SetColor("lightyellow");
- $odo[$i]->needle->Set(80);
- $odo[$i]->needle->SetStyle($nstyle[$i]);
- $odo[$i]->caption->Set($captions[$i]);
- $odo[$i]->caption->SetFont(FF_FONT1);
- $odo[$i]->caption->SetMargin(3);
-}
-
-// Use the automatic layout engine to positon the plots on the graph
-$row1 = new LayoutHor( array($odo[0],$odo[1],$odo[2]) );
-$row2 = new LayoutHor( array($odo[3],$odo[4],$odo[5]) );
-$col1 = new LayoutVert( array($row1,$row2) );
-
-// Add the odometer to the graph
-$graph->Add($col1);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex07.php b/#jpgraph/src/Examples/odotutex07.php
deleted file mode 100644
index a1ba22bb..00000000
--- a/#jpgraph/src/Examples/odotutex07.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetColor("lightyellow");
- $odo[$i]->needle->Set(75);
- $odo[$i]->needle->SetStyle(NEEDLE_STYLE_ENDARROW, $astyles[$i]);
- $odo[$i]->caption->SetFont(FF_FONT1,FS_BOLD);
- $odo[$i]->caption->Set('Arrow: '.$acaptions[$i]);
-}
-
-$row1 = new LayoutHor( array($odo[0],$odo[1],$odo[2]) );
-$row2 = new LayoutHor( array($odo[3],$odo[4],$odo[5]) );
-$row3 = new LayoutHor( array($odo[6],$odo[7],$odo[8]) );
-$col1 = new LayoutVert( array($row1,$row2,$row3) );
-
-// Add the odometer to the graph
-$graph->Add($col1);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex08.1.php b/#jpgraph/src/Examples/odotutex08.1.php
deleted file mode 100644
index 676ac4c8..00000000
--- a/#jpgraph/src/Examples/odotutex08.1.php
+++ /dev/null
@@ -1,41 +0,0 @@
-title->Set('An example with thick border');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,11);
-
-// Add drop shadow for graph
-$graph->SetShadow();
-
-// Set some nonstandard colors
-$color = array(205,220,205);
-$graph->SetMarginColor($color);
-$graph->SetColor($color);
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer();
-$odo->SetColor('white');
-$odo->SetBorder('darkgreen:0.8',5);
-
-$odo->scale->label->SetFont(FF_ARIAL,FS_BOLD,10);
-$odo->scale->label->SetColor('brown:0.6');
-
-// Set display value for the odometer
-$odo->needle->Set(70);
-
-// Add drop shadow for needle
-$odo->needle->SetShadow();
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex08.php b/#jpgraph/src/Examples/odotutex08.php
deleted file mode 100644
index 8132e732..00000000
--- a/#jpgraph/src/Examples/odotutex08.php
+++ /dev/null
@@ -1,36 +0,0 @@
-title->Set('An example with drop shadows');
-
-// Add drop shadow for graph
-$graph->SetShadow();
-
-// Set some nonstandard colors
-$color = array(205,220,205);
-$graph->SetMarginColor($color);
-$graph->SetColor($color);
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer();
-$odo->SetColor('white');
-
-// Set display value for the odometer
-$odo->needle->Set(70);
-
-// Add drop shadow for needle
-$odo->needle->SetShadow();
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex09.php b/#jpgraph/src/Examples/odotutex09.php
deleted file mode 100644
index 82a2c4b3..00000000
--- a/#jpgraph/src/Examples/odotutex09.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetColor("lightyellow");
- $odo[$i]->needle->Set(75);
- $odo[$i]->needle->SetStyle(NEEDLE_STYLE_ENDARROW, $astyles[$i]);
- $odo[$i]->caption->SetFont(FF_FONT1);
- $odo[$i]->caption->Set($acaptions[$i]);
- $odo[$i]->SetMargin(15);
-}
-
-$row1 = new LayoutHor( array($odo[0],$odo[1],$odo[2]) );
-$row2 = new LayoutHor( array($odo[3],$odo[4],$odo[5]) );
-$row3 = new LayoutHor( array($odo[6],$odo[7],$odo[8]) );
-$col1 = new LayoutVert( array($row1,$row2,$row3) );
-
-// Add the odometer to the graph
-$graph->Add($col1);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex10.php b/#jpgraph/src/Examples/odotutex10.php
deleted file mode 100644
index f44fc5e0..00000000
--- a/#jpgraph/src/Examples/odotutex10.php
+++ /dev/null
@@ -1,43 +0,0 @@
-title->Set('Example with scale indicators');
-
-// Add drop shadow for graph
-$graph->SetShadow();
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer(ODO_HALF);
-
-// Add color indications
-$odo->AddIndication(0,20,"green:0.7");
-$odo->AddIndication(20,30,"green:0.9");
-$odo->AddIndication(30,60,"yellow");
-$odo->AddIndication(60,80,"orange");
-$odo->AddIndication(80,100,"red");
-
-// Set display value for the odometer
-$odo->needle->Set(90);
-
-//---------------------------------------------------------------------
-// Add drop shadow for needle
-//---------------------------------------------------------------------
-$odo->needle->SetShadow();
-
-//---------------------------------------------------------------------
-// Add the odometer to the graph
-//---------------------------------------------------------------------
-$graph->Add($odo);
-
-//---------------------------------------------------------------------
-// ... and finally stroke and stream the image back to the browser
-//---------------------------------------------------------------------
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex11.php b/#jpgraph/src/Examples/odotutex11.php
deleted file mode 100644
index f1290f7d..00000000
--- a/#jpgraph/src/Examples/odotutex11.php
+++ /dev/null
@@ -1,40 +0,0 @@
-title->Set('Example with scale indicators');
-
-// Add drop shadow for graph
-$graph->SetShadow();
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer(ODO_HALF);
-
-// Add color indications
-$odo->AddIndication(0,20,"green:0.7");
-$odo->AddIndication(20,30,"green:0.9");
-$odo->AddIndication(30,60,"yellow");
-$odo->AddIndication(60,80,"orange");
-$odo->AddIndication(80,100,"red");
-
-// Set display value for the odometer
-$odo->needle->Set(90);
-
-// Set the size of the non-colored base area to 40% of the radius
-$odo->SetCenterAreaWidth(0.45);
-
-// Add drop shadow for needle
-$odo->needle->SetShadow();
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex12.php b/#jpgraph/src/Examples/odotutex12.php
deleted file mode 100644
index 5d030a8e..00000000
--- a/#jpgraph/src/Examples/odotutex12.php
+++ /dev/null
@@ -1,47 +0,0 @@
-title->Set('Example with scale indicators');
-
-// Add drop shadow for graph
-$graph->SetShadow();
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer(ODO_HALF);
-
-// Add color indications
-$odo->AddIndication(0,20,"green:0.7");
-$odo->AddIndication(20,30,"green:0.9");
-$odo->AddIndication(30,60,"yellow");
-$odo->AddIndication(60,80,"orange");
-$odo->AddIndication(80,100,"red");
-
-// Set display value for the odometer
-$odo->needle->Set(90);
-
-// Set the size of the non-colored base area to 40% of the radius
-$odo->SetCenterAreaWidth(0.45);
-
-// Add drop shadow for needle
-$odo->needle->SetShadow();
-
-// Setup the second needle
-$odo->needle2->Set(44);
-$odo->needle2->Show();
-$odo->needle2->SetLength(0.4);
-$odo->needle2->SetFillColor("navy");
-$odo->needle2->SetShadow();
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-
-// EOF
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex13.php b/#jpgraph/src/Examples/odotutex13.php
deleted file mode 100644
index 5c49a117..00000000
--- a/#jpgraph/src/Examples/odotutex13.php
+++ /dev/null
@@ -1,41 +0,0 @@
-title->Set('Example with scale indicators');
-
-// Add drop shadow for graph
-$graph->SetShadow();
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer(ODO_HALF);
-
-// Add color indications
-$odo->AddIndication(0,20,"green:0.7");
-$odo->AddIndication(20,30,"green:0.9");
-$odo->AddIndication(30,60,"yellow");
-$odo->AddIndication(60,80,"orange");
-$odo->AddIndication(80,100,"red");
-
-$odo->SetCenterAreaWidth(0.45);
-
-// Set display value for the odometer
-$odo->needle->Set(90);
-
-// Add scale labels
-$odo->label->Set("mBar");
-$odo->label->SetFont(FF_FONT2,FS_BOLD);
-
-// Add drop shadow for needle
-$odo->needle->SetShadow();
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex14.php b/#jpgraph/src/Examples/odotutex14.php
deleted file mode 100644
index 19e8f71b..00000000
--- a/#jpgraph/src/Examples/odotutex14.php
+++ /dev/null
@@ -1,35 +0,0 @@
-title->Set('Custom scale');
-$graph->title->SetColor('white');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD);
-
-// Add drop shadow for graph
-$graph->SetShadow();
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo = new Odometer();
-$odo->SetColor('lightyellow');
-
-// Setup the scale
-$odo->scale->Set(100,600);
-$odo->scale->SetTicks(50,2);
-
-// Set display value for the odometer
-$odo->needle->Set(280);
-
-// Add drop shadow for needle
-$odo->needle->SetShadow();
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex15.php b/#jpgraph/src/Examples/odotutex15.php
deleted file mode 100644
index fece535e..00000000
--- a/#jpgraph/src/Examples/odotutex15.php
+++ /dev/null
@@ -1,46 +0,0 @@
-title->Set('Custom formatting');
-$graph->title->SetColor('white');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD);
-
-// Add drop shadow for graph
-$graph->SetShadow();
-
-// Now we need to create an odometer to add to the graph.
-$odo = new Odometer();
-$odo->SetColor("lightgray:1.9");
-
-// Setup the scale
-$odo->scale->Set(100,600);
-$odo->scale->SetTicks(50,2);
-$odo->scale->SetTickColor('brown');
-$odo->scale->SetTickLength(0.05);
-$odo->scale->SetTickWeight(2);
-
-$odo->scale->SetLabelPos(0.75);
-$odo->scale->label->SetFont(FF_FONT1, FS_BOLD);
-$odo->scale->label->SetColor('brown');
-$odo->scale->label->SetFont(FF_ARIAL,FS_NORMAL,10);
-
-// Setup a label with a degree mark
-$odo->scale->SetLabelFormat('%dC'.SymChar::Get('degree'));
-
-// Set display value for the odometer
-$odo->needle->Set(280);
-
-// Add drop shadow for needle
-$odo->needle->SetShadow();
-
-// Add the odometer to the graph
-$graph->Add($odo);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex16.1.php b/#jpgraph/src/Examples/odotutex16.1.php
deleted file mode 100644
index c370618f..00000000
--- a/#jpgraph/src/Examples/odotutex16.1.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetShadow();
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo1 = new Odometer();
-$odo2 = new Odometer();
-$odo1->SetColor("lightgray:1.9");
-$odo2->SetColor("lightgray:1.9");
-
-// Adjust start and end angle for the scale
-$odo2->scale->SetAngle(110,250);
-
-$odo1->scale->label->SetFont(FF_ARIAL,FS_BOLD,10);
-$odo2->scale->label->SetFont(FF_ARIAL,FS_BOLD,10);
-$odo2->AddIndication(-15,0,'lightgray');
-$odo2->AddIndication(100,115,'lightgray');
-
-// Set display value for the odometer
-$odo1->needle->Set(70);
-$odo2->needle->Set(70);
-
-// Add drop shadow for needle
-$odo1->needle->SetShadow();
-$odo2->needle->SetShadow();
-
-// Specify the layout for the two odometers
-$row = new LayoutHor( array($odo1,$odo2) );
-
-// Add the odometer to the graph
-$graph->Add($row);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex16.php b/#jpgraph/src/Examples/odotutex16.php
deleted file mode 100644
index 16619f3c..00000000
--- a/#jpgraph/src/Examples/odotutex16.php
+++ /dev/null
@@ -1,40 +0,0 @@
-SetShadow();
-
-// Now we need to create an odometer to add to the graph.
-// By default the scale will be 0 to 100
-$odo1 = new Odometer();
-$odo2 = new Odometer();
-$odo1->SetColor("lightgray:1.9");
-$odo2->SetColor("lightgray:1.9");
-
-// Adjust start and end angle for the scale
-$odo2->scale->SetAngle(110,250);
-
-$odo1->scale->label->SetFont(FF_ARIAL,FS_BOLD,10);
-$odo2->scale->label->SetFont(FF_ARIAL,FS_BOLD,10);
-
-// Set display value for the odometer
-$odo1->needle->Set(70);
-$odo2->needle->Set(70);
-
-// Add drop shadow for needle
-$odo1->needle->SetShadow();
-$odo2->needle->SetShadow();
-
-// Specify the layout for the two odometers
-$row = new LayoutHor( array($odo1,$odo2) );
-
-// Add the odometer to the graph
-$graph->Add($row);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex17.php b/#jpgraph/src/Examples/odotutex17.php
deleted file mode 100644
index 6a9abf8d..00000000
--- a/#jpgraph/src/Examples/odotutex17.php
+++ /dev/null
@@ -1,46 +0,0 @@
-title->Set('Manual positioning');
-$graph->title->SetColor('white');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-// Add drop shadow for graph
-$graph->SetShadow();
-
-// Now we need to create an odometer to add to the graph.
-$odo1 = new Odometer();
-$odo2 = new Odometer();
-$odo1->SetColor('lightgray:1.9');
-$odo2->SetColor('lightgray:1.9');
-
-// Set display value for the odometer
-$odo1->needle->Set(37);
-$odo2->needle->Set(73);
-
-// Add drop shadow for needle
-$odo1->needle->SetShadow();
-$odo2->needle->SetShadow();
-
-// Specify the position for the two odometers
-$odo1->SetPos(180,110);
-$odo1->SetSize(100);
-$odo2->SetPos(110,250);
-$odo2->SetSize(100);
-
-// Set captions for the odometers
-$odo1->caption->Set("(x,y) = (180,120)\nradius=100");
-$odo2->caption->Set("(x,y) = (110,270)\nradius=100");
-
-// Add the odometer to the graph
-$graph->Add($odo1);
-$graph->Add($odo2);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex18.php b/#jpgraph/src/Examples/odotutex18.php
deleted file mode 100644
index 44bd4913..00000000
--- a/#jpgraph/src/Examples/odotutex18.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetColor('lightgray:1.9');
- $odo[$i]->needle->Set(10+$i*17);
- $odo[$i]->needle->SetShadow();
- if( $i < 2 )
- $fsize = 10;
- else
- $fsize = 8;
- $odo[$i]->scale->label->SetFont(FF_ARIAL,FS_NORMAL,$fsize);
- $odo[$i]->AddIndication(92,100,'red');
- $odo[$i]->AddIndication(80,92,'orange');
- $odo[$i]->AddIndication(60,80,'yellow');
-}
-
-// Create the layout
-$row1 = new LayoutHor( array($odo[0],$odo[1]) );
-$row2 = new LayoutHor( array($odo[2],$odo[3],$odo[4]) );
-$col1 = new LayoutVert( array($row1,$row2) );
-
-// Add the odometer to the graph
-$graph->Add($col1);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/odotutex19.php b/#jpgraph/src/Examples/odotutex19.php
deleted file mode 100644
index 02324b06..00000000
--- a/#jpgraph/src/Examples/odotutex19.php
+++ /dev/null
@@ -1,49 +0,0 @@
-SetColor('lightgray:1.9');
- $odo[$i]->needle->Set(10+$i*17);
- $odo[$i]->needle->SetShadow();
- if( $i < 2 )
- $fsize = 10;
- else
- $fsize = 8;
- $odo[$i]->scale->label->SetFont(FF_ARIAL,FS_NORMAL,$fsize);
- $odo[$i]->AddIndication(92,100,'red');
- $odo[$i]->AddIndication(80,92,'orange');
- $odo[$i]->AddIndication(60,80,'yellow');
-}
-
-// Create the layout
-$row1 = new LayoutHor( array($odo[0],$odo[1]) );
-$row2 = new LayoutHor( array($odo[2],$odo[3],$odo[4]) );
-$col1 = new LayoutVert( array($row1,$row2) );
-
-// Add the odometer to the graph
-$graph->Add($col1);
-
-// Add an icon and text
-$icon = new IconPlot('jpglogo.jpg',250,10,0.85,30);
-$icon->SetAnchor('center','top');
-$graph->Add($icon);
-
-$t = new Text('JpGraph',250,70);
-$t->SetAlign('center','top');
-#$t->SetFont(FF_VERA,FS_BOLD,11);
-$t->SetColor('darkgray');
-$graph->Add($t);
-
-// ... and finally stroke and stream the image back to the browser
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/orange_example.php b/#jpgraph/src/Examples/orange_example.php
deleted file mode 100644
index adab98dc..00000000
--- a/#jpgraph/src/Examples/orange_example.php
+++ /dev/null
@@ -1,58 +0,0 @@
- array (0 => 79, 1 => -25, 2 => -7, 3 => 85, 4 => -26, 5 => -32, ),
- 1 => array (0 => 76, 1 => 51, 2 => 86, 3 => 12, 4 => -7, 5 => 94, ),
- 2 => array (0 => 49, 1 => 38, 2 => 7, 3 => -40, 4 => 9, 5 => -7, ),
- 3 => array ( 0 => 69, 1 => 96, 2 => 49, 3 => 7, 4 => 92, 5 => -38, ),
- 4 => array ( 0 => 68, 1 => 16, 2 => 82, 3 => -49, 4 => 50, 5 => 7, ),
- 5 => array ( 0 => -37, 1 => 28, 2 => 32, 3 => 6, 4 => 13, 5 => 57, ),
- 6 => array ( 0 => 24, 1 => -11, 2 => 7, 3 => 10, 4 => 51, 5 => 51, ),
- 7 => array ( 0 => 3, 1 => -1, 2 => -12, 3 => 61, 4 => 10, 5 => 47, ),
- 8 => array ( 0 => -47, 1 => -21, 2 => 43, 3 => 53, 4 => 36, 5 => 34, ),
-);
-
-
-// Create the graph. These two calls are always required
-$graph = new Graph(400,300);
-
-$graph->SetScale("textlin");
-if ($theme) {
- $graph->SetTheme(new $theme());
-}
-$theme_class = new OrangeTheme;
-$graph->SetTheme($theme_class);
-
-$plot = array();
-// Create the bar plots
-for ($i = 0; $i < 4; $i++) {
- $plot[$i] = new BarPlot($data[$i]);
- $plot[$i]->SetLegend('plot'.($i+1));
-}
-//$acc1 = new AccBarPlot(array($plot[0], $plot[1]));
-//$acc1->value->Show();
-$gbplot = new GroupBarPlot(array($plot[2], $plot[1] ));
-
-for ($i = 4; $i < 8; $i++) {
- $plot[$i] = new LinePlot($data[$i]);
- $plot[$i]->SetLegend('plot'.$i);
- $plot[$i]->value->Show();
-}
-
-$graph->Add($gbplot);
-$graph->Add($plot[4]);
-
-$title = "OrangeTheme Example";
-$title = mb_convert_encoding($title,'UTF-8');
-$graph->title->Set($title);
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/partiallyfilledlineex1.php b/#jpgraph/src/Examples/partiallyfilledlineex1.php
deleted file mode 100644
index 7ad37eca..00000000
--- a/#jpgraph/src/Examples/partiallyfilledlineex1.php
+++ /dev/null
@@ -1,44 +0,0 @@
-SetScale("textlin");
-$graph->SetShadow(true);
-$graph->SetMarginColor("lightblue");
-
-// Setup format for legend
-$graph->legend->SetFillColor("antiquewhite");
-$graph->legend->SetShadow(true);
-
-// Setup title
-$graph->title->Set("Filled Area Example");
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-
-// Setup semi-filled line plot
-$lineplot = new LinePlot($ydata);
-$lineplot->SetLegend("Semi-filled\nLineplot");
-
-// Set line color
-$lineplot->SetColor("black");
-
-// Setup the two areas to be filled
-$lineplot->AddArea(2,5,LP_AREA_FILLED,"red");
-$lineplot->AddArea(6,8,LP_AREA_FILLED,"green");
-
-// Display the marks on the lines
-$lineplot->mark->SetType(MARK_DIAMOND);
-$lineplot->mark->SetSize(8);
-$lineplot->mark->Show();
-
-// add plot to the graph
-$graph->Add($lineplot);
-
-// display graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/pastel_example.php b/#jpgraph/src/Examples/pastel_example.php
deleted file mode 100644
index 82aeeb4c..00000000
--- a/#jpgraph/src/Examples/pastel_example.php
+++ /dev/null
@@ -1,57 +0,0 @@
- array (0 => 79, 1 => -25, 2 => -7, 3 => 85, 4 => -26, 5 => -32, ),
- 1 => array (0 => 76, 1 => 51, 2 => 86, 3 => 12, 4 => -7, 5 => 94, ),
- 2 => array (0 => 49, 1 => 38, 2 => 7, 3 => -40, 4 => 9, 5 => -7, ),
- 3 => array ( 0 => 69, 1 => 96, 2 => 49, 3 => 7, 4 => 92, 5 => -38, ),
- 4 => array ( 0 => 68, 1 => 16, 2 => 82, 3 => -49, 4 => 50, 5 => 7, ),
- 5 => array ( 0 => -37, 1 => 28, 2 => 32, 3 => 6, 4 => 13, 5 => 57, ),
- 6 => array ( 0 => 24, 1 => -11, 2 => 7, 3 => 10, 4 => 51, 5 => 51, ),
- 7 => array ( 0 => 3, 1 => -1, 2 => -12, 3 => 61, 4 => 10, 5 => 47, ),
- 8 => array ( 0 => -47, 1 => -21, 2 => 43, 3 => 53, 4 => 36, 5 => 34, ),
-);
-
-
-// Create the graph. These two calls are always required
-$graph = new Graph(400,300);
-
-$graph->SetScale("textlin");
-if ($theme) {
- $graph->SetTheme(new $theme());
-}
-$theme_class = new PastelTheme;
-$graph->SetTheme($theme_class);
-
-$plot = array();
-// Create the bar plots
-for ($i = 0; $i < 4; $i++) {
- $plot[$i] = new BarPlot($data[$i]);
- $plot[$i]->SetLegend('plot'.($i+1));
-}
-//$acc1 = new AccBarPlot(array($plot[0], $plot[1]));
-//$acc1->value->Show();
-$gbplot = new GroupBarPlot(array($plot[2], $plot[1] ));
-
-for ($i = 4; $i < 8; $i++) {
- $plot[$i] = new LinePlot($data[$i]);
- $plot[$i]->SetLegend('plot'.$i);
- $plot[$i]->value->Show();
-}
-
-$graph->Add($gbplot);
-$graph->Add($plot[4]);
-
-$title = "PastelTheme Example";
-$title = mb_convert_encoding($title,'UTF-8');
-$graph->title->Set($title);
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/pdf417_ex0.php b/#jpgraph/src/Examples/pdf417_ex0.php
deleted file mode 100644
index fb197f5b..00000000
--- a/#jpgraph/src/Examples/pdf417_ex0.php
+++ /dev/null
@@ -1,8 +0,0 @@
-Stroke($data);
-?>
diff --git a/#jpgraph/src/Examples/pdf417_ex1.php b/#jpgraph/src/Examples/pdf417_ex1.php
deleted file mode 100644
index 84dd2726..00000000
--- a/#jpgraph/src/Examples/pdf417_ex1.php
+++ /dev/null
@@ -1,13 +0,0 @@
-Stroke($data);
-}
-catch(JpGraphException $e) {
- echo 'PDF417 Error: '.$e->GetMessage();
-}
-?>
diff --git a/#jpgraph/src/Examples/pdf417_ex1b.php b/#jpgraph/src/Examples/pdf417_ex1b.php
deleted file mode 100644
index fad0a9e0..00000000
--- a/#jpgraph/src/Examples/pdf417_ex1b.php
+++ /dev/null
@@ -1,20 +0,0 @@
-Stroke($data);
-}
-catch(JpGraphException $e) {
- echo 'PDF417 Error: '.$e->GetMessage();
-}
-?>
diff --git a/#jpgraph/src/Examples/pdf417_ex1c.php b/#jpgraph/src/Examples/pdf417_ex1c.php
deleted file mode 100644
index 96a74870..00000000
--- a/#jpgraph/src/Examples/pdf417_ex1c.php
+++ /dev/null
@@ -1,23 +0,0 @@
-ShowText(true);
- $backend->SetModuleWidth($modwidth);
- $backend->Stroke($data);
-}
-catch(JpGraphException $e) {
- echo 'PDF417 Error: '.$e->GetMessage();
-}
-?>
diff --git a/#jpgraph/src/Examples/pdf417_ex2.php b/#jpgraph/src/Examples/pdf417_ex2.php
deleted file mode 100644
index 685b0c29..00000000
--- a/#jpgraph/src/Examples/pdf417_ex2.php
+++ /dev/null
@@ -1,24 +0,0 @@
-SetModuleWidth($modwidth);
- $backend->SetHeight($height);
- $backend->Stroke($data);
-}
-catch(JpGraphException $e) {
- echo 'PDF417 Error: '.$e->GetMessage();
-}
-?>
diff --git a/#jpgraph/src/Examples/pdf417_ex3.php b/#jpgraph/src/Examples/pdf417_ex3.php
deleted file mode 100644
index ec2c7b6f..00000000
--- a/#jpgraph/src/Examples/pdf417_ex3.php
+++ /dev/null
@@ -1,26 +0,0 @@
-SetModuleWidth($modwidth);
- $backend->SetHeight($height);
- $backend->NoText(!$showtext);
- $backend->Stroke($data);
-}
-catch(JpGraphException $e) {
- echo 'PDF417 Error: '.$e->GetMessage();
-}
-?>
diff --git a/#jpgraph/src/Examples/pdf417_ex4.php b/#jpgraph/src/Examples/pdf417_ex4.php
deleted file mode 100644
index 5fb8e6e7..00000000
--- a/#jpgraph/src/Examples/pdf417_ex4.php
+++ /dev/null
@@ -1,28 +0,0 @@
-SetModuleWidth($modwidth);
- $backend->SetHeight($height);
- $backend->NoText(!$showtext);
- $backend->SetColor('black','yellow');
- $backend->Stroke($data);
-}
-catch(JpGraphException $e) {
- echo 'PDF417 Error: '.$e->GetMessage();
-}
-?>
diff --git a/#jpgraph/src/Examples/pdf417_ex5.php b/#jpgraph/src/Examples/pdf417_ex5.php
deleted file mode 100644
index fc525bfe..00000000
--- a/#jpgraph/src/Examples/pdf417_ex5.php
+++ /dev/null
@@ -1,29 +0,0 @@
-SetModuleWidth($modwidth);
- $backend->SetHeight($height);
- $backend->NoText(!$showtext);
- $backend->SetColor('black','yellow');
- $output = $backend->Stroke($data);
- echo nl2br(htmlspecialchars($output));
-}
-catch(JpGraphException $e) {
- echo 'PDF417 Error: '.$e->GetMessage();
-}
-?>
diff --git a/#jpgraph/src/Examples/pdf417_ex6.php b/#jpgraph/src/Examples/pdf417_ex6.php
deleted file mode 100644
index 9b2e14d6..00000000
--- a/#jpgraph/src/Examples/pdf417_ex6.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetModuleWidth($modwidth);
- $backend->NoText(!$showtext);
- $backend->Stroke($data);
-}
-catch(JpGraphException $e) {
- echo 'PDF417 Error: '.$e->GetMessage();
-}
-?>
diff --git a/#jpgraph/src/Examples/penguin.png b/#jpgraph/src/Examples/penguin.png
deleted file mode 100644
index 2ae426ae..00000000
Binary files a/#jpgraph/src/Examples/penguin.png and /dev/null differ
diff --git a/#jpgraph/src/Examples/pie3d_csimex1.php b/#jpgraph/src/Examples/pie3d_csimex1.php
deleted file mode 100644
index 564c51f6..00000000
--- a/#jpgraph/src/Examples/pie3d_csimex1.php
+++ /dev/null
@@ -1,43 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set("3D Pie Client side image map");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create
-$p1 = new PiePlot3D($data);
-$p1->SetLegends(array("Jan (%d)","Feb","Mar","Apr","May","Jun","Jul"));
-$targ=array("pie3d_csimex1.php?v=1","pie3d_csimex1.php?v=2","pie3d_csimex1.php?v=3",
- "pie3d_csimex1.php?v=4","pie3d_csimex1.php?v=5","pie3d_csimex1.php?v=6");
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-$p1->SetCSIMTargets($targ,$alts);
-
-// Use absolute labels
-$p1->SetLabelType(1);
-$p1->value->SetFormat("%d kr");
-
-// Move the pie slightly to the left
-$p1->SetCenter(0.4,0.5);
-
-$graph->Add($p1);
-
-
-// Send back the HTML page which will call this script again
-// to retrieve the image.
-$graph->StrokeCSIM();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pie3dex1.php b/#jpgraph/src/Examples/pie3dex1.php
deleted file mode 100644
index 10e2100f..00000000
--- a/#jpgraph/src/Examples/pie3dex1.php
+++ /dev/null
@@ -1,32 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set("Example 1 3D Pie plot");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,18);
-$graph->title->SetColor("darkblue");
-$graph->legend->Pos(0.1,0.2);
-
-// Create pie plot
-$p1 = new PiePlot3d($data);
-$p1->SetTheme("sand");
-$p1->SetCenter(0.4);
-$p1->SetAngle(30);
-$p1->value->SetFont(FF_ARIAL,FS_NORMAL,12);
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct"));
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pie3dex2.php b/#jpgraph/src/Examples/pie3dex2.php
deleted file mode 100644
index bd2a099b..00000000
--- a/#jpgraph/src/Examples/pie3dex2.php
+++ /dev/null
@@ -1,45 +0,0 @@
-SetShadow();
-
-
-// Set A title for the plot
-$graph->title->Set("Example 2 3D Pie plot");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,18);
-$graph->title->SetColor("darkblue");
-$graph->legend->Pos(0.1,0.2);
-
-// Create 3D pie plot
-$p1 = new PiePlot3d($data);
-$p1->SetTheme("sand");
-$p1->SetCenter(0.4);
-$p1->SetSize(0.4);
-$p1->SetHeight(5);
-
-// Adjust projection angle
-$p1->SetAngle(45);
-
-// You can explode several slices by specifying the explode
-// distance for some slices in an array
-$p1->Explode(array(0,40,0,30));
-
-// As a shortcut you can easily explode one numbered slice with
-// $p1->ExplodeSlice(3);
-
-$p1->value->SetFont(FF_ARIAL,FS_NORMAL,10);
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct"));
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pie3dex3.php b/#jpgraph/src/Examples/pie3dex3.php
deleted file mode 100644
index b45a2f22..00000000
--- a/#jpgraph/src/Examples/pie3dex3.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set("Example 3 3D Pie plot");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,18);
-$graph->title->SetColor("darkblue");
-$graph->legend->Pos(0.1,0.2);
-
-// Create 3D pie plot
-$p1 = new PiePlot3d($data);
-$p1->SetTheme("sand");
-$p1->SetCenter(0.4);
-$p1->SetSize(80);
-
-// Adjust projection angle
-$p1->SetAngle(45);
-
-// As a shortcut you can easily explode one numbered slice with
-$p1->ExplodeSlice(3);
-
-// Setup the slice values
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,11);
-$p1->value->SetColor("navy");
-
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct"));
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pie3dex4.php b/#jpgraph/src/Examples/pie3dex4.php
deleted file mode 100644
index 0ce86e4e..00000000
--- a/#jpgraph/src/Examples/pie3dex4.php
+++ /dev/null
@@ -1,46 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set("Example 4 3D Pie plot");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,18);
-$graph->title->SetColor("darkblue");
-$graph->legend->Pos(0.1,0.2);
-
-// Create 3D pie plot
-$p1 = new PiePlot3d($data);
-$p1->SetTheme("sand");
-$p1->SetCenter(0.4);
-$p1->SetSize(80);
-
-// Adjust projection angle
-$p1->SetAngle(45);
-
-// Adjsut angle for first slice
-$p1->SetStartAngle(45);
-
-// As a shortcut you can easily explode one numbered slice with
-$p1->ExplodeSlice(3);
-
-// Setup slice values
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,11);
-$p1->value->SetColor("navy");
-
-
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct"));
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pie3dex5.php b/#jpgraph/src/Examples/pie3dex5.php
deleted file mode 100644
index 6efe470f..00000000
--- a/#jpgraph/src/Examples/pie3dex5.php
+++ /dev/null
@@ -1,46 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set("Example 5 3D Pie plot");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,18);
-$graph->title->SetColor("darkblue");
-$graph->legend->Pos(0.1,0.2);
-
-// Create 3D pie plot
-$p1 = new PiePlot3d($data);
-$p1->SetTheme("sand");
-$p1->SetCenter(0.4);
-$p1->SetSize(80);
-
-// Adjust projection angle
-$p1->SetAngle(45);
-
-// Adjsut angle for first slice
-$p1->SetStartAngle(45);
-
-// Display the slice values
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,11);
-$p1->value->SetColor("navy");
-
-// Add colored edges to the 3D pie
-// NOTE: You can't have exploded slices with edges!
-$p1->SetEdge("navy");
-
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct"));
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pie_csimex1.php b/#jpgraph/src/Examples/pie_csimex1.php
deleted file mode 100644
index 50c3f700..00000000
--- a/#jpgraph/src/Examples/pie_csimex1.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set("Client side image map");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create
-$p1 = new PiePlot($data);
-$p1->SetCenter(0.4,0.5);
-
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May","Jun","Jul"));
-$targ=array("pie_csimex1.php#1","pie_csimex1.php#2","pie_csimex1.php#3",
-"pie_csimex1.php#4","pie_csimex1.php#5","pie_csimex1.php#6");
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-$p1->SetCSIMTargets($targ,$alts);
-
-$graph->Add($p1);
-
-
-// Send back the HTML page which will call this script again
-// to retrieve the image.
-$graph->StrokeCSIM();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/piebkgex1.php b/#jpgraph/src/Examples/piebkgex1.php
deleted file mode 100644
index d2371c01..00000000
--- a/#jpgraph/src/Examples/piebkgex1.php
+++ /dev/null
@@ -1,94 +0,0 @@
-SetMargin(1,1,40,1);
-$graph->SetMarginColor('navy');
-$graph->SetShadow(false);
-
-// Setup background
-$graph->SetBackgroundImage('worldmap1.jpg',BGIMG_FILLPLOT);
-
-// Setup title
-$graph->title->Set("Pie plots with background image");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,20);
-$graph->title->SetColor('white');
-
-$p = array();
-// Create the plots
-for( $i=0; $i < $n; ++$i ) {
- $d = "data$i";
- $p[] = new PiePlot3D($data[$i]);
-}
-
-// Position the four pies
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->SetCenter($piepos[2*$i],$piepos[2*$i+1]);
-}
-
-// Set the titles
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->title->Set($titles[$i]);
- $p[$i]->title->SetColor('white');
- $p[$i]->title->SetFont(FF_ARIAL,FS_BOLD,12);
-}
-
-// Label font and color setup
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->value->SetFont(FF_ARIAL,FS_BOLD);
- $p[$i]->value->SetColor('white');
-}
-
-// Show the percetages for each slice
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->value->Show();
-}
-
-// Label format
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->value->SetFormat("%01.1f%%");
-}
-
-// Size of pie in fraction of the width of the graph
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->SetSize(0.15);
-}
-
-// Format the border around each slice
-
-
-for( $i=0; $i < $n; ++$i ) {
- $p[$i]->SetEdge(false);
- $p[$i]->ExplodeSlice(1);
-}
-
-// Use one legend for the whole graph
-$p[0]->SetLegends(array("May","June","July","Aug"));
-$graph->legend->Pos(0.05,0.35);
-$graph->legend->SetShadow(false);
-
-for( $i=0; $i < $n; ++$i ) {
- $graph->Add($p[$i]);
-}
-
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/piec_csimex1.php b/#jpgraph/src/Examples/piec_csimex1.php
deleted file mode 100644
index bffcb026..00000000
--- a/#jpgraph/src/Examples/piec_csimex1.php
+++ /dev/null
@@ -1,87 +0,0 @@
-SetFrame(false);
-
-// Uncomment this line to add a drop shadow to the border
-// $graph->SetShadow();
-
-// Setup title
-$graph->title->Set("CSIM Center Pie plot ex 1");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,18);
-$graph->title->SetMargin(8); // Add a little bit more margin from the top
-
-// Create the pie plot
-$p1 = new PiePlotC($data);
-
-// Set the radius of pie (as fraction of image size)
-$p1->SetSize(0.32);
-
-// Move the center of the pie slightly to the top of the image
-$p1->SetCenter(0.5,0.45);
-
-// Label font and color setup
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,12);
-$p1->value->SetColor('white');
-
-// Setup the title on the center circle
-$p1->midtitle->Set("Test mid\nRow 1\nRow 2");
-$p1->midtitle->SetFont(FF_ARIAL,FS_NORMAL,14);
-
-// Set color for mid circle
-$p1->SetMidColor('yellow');
-
-// Use percentage values in the legends values (This is also the default)
-$p1->SetLabelType(PIE_VALUE_PER);
-
-// The label array values may have printf() formatting in them. The argument to the
-// form,at string will be the value of the slice (either the percetage or absolute
-// depending on what was specified in the SetLabelType() above.
-$lbl = array("adam\n%.1f%%","bertil\n%.1f%%","johan\n%.1f%%",
- "peter\n%.1f%%","daniel\n%.1f%%","erik\n%.1f%%");
-$p1->SetLabels($lbl);
-
-// Uncomment this line to remove the borders around the slices
-// $p1->ShowBorder(false);
-
-// Add drop shadow to slices
-$p1->SetShadow();
-
-// Explode all slices 15 pixels
-$p1->ExplodeAll(15);
-
-// Setup the CSIM targets
-$targ=array("piec_csimex1.php#1","piec_csimex1.php#2","piec_csimex1.php#3",
- "piec_csimex1.php#4","piec_csimex1.php#5","piec_csimex1.php#6");
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-$p1->SetCSIMTargets($targ,$alts);
-$p1->SetMidCSIM("piec_csimex1.php#7","Center");
-
-
-// Setup a small help text in the image
-$txt = new Text("Note: This is an example of image map. Hold\nyour mouse over the slices to see the values.\nThe URL just points back to this page");
-$txt->SetFont(FF_FONT1,FS_BOLD);
-$txt->SetPos(0.5,0.97,'center','bottom');
-$txt->SetBox('yellow','black');
-$txt->SetShadow();
-$graph->AddText($txt);
-
-// Add plot to pie graph
-$graph->Add($p1);
-
-// .. and send the image on it's marry way to the browser
-$graph->StrokeCSIM();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/piecex1.php b/#jpgraph/src/Examples/piecex1.php
deleted file mode 100644
index af1f2419..00000000
--- a/#jpgraph/src/Examples/piecex1.php
+++ /dev/null
@@ -1,46 +0,0 @@
-title->Set("Pie plot with center circle");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->title->SetMargin(8); // Add a little bit more margin from the top
-
-// Create the pie plot
-$p1 = new PiePlotC($data);
-
-// Set size of pie
-$p1->SetSize(0.32);
-
-// Label font and color setup
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,10);
-$p1->value->SetColor('black');
-
-// Setup the title on the center circle
-$p1->midtitle->Set("Test mid\nRow 1\nRow 2");
-$p1->midtitle->SetFont(FF_ARIAL,FS_NORMAL,10);
-
-// Set color for mid circle
-$p1->SetMidColor('yellow');
-
-// Use percentage values in the legends values (This is also the default)
-$p1->SetLabelType(PIE_VALUE_PER);
-
-// Add plot to pie graph
-$graph->Add($p1);
-
-// .. and send the image on it's marry way to the browser
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/piecex2.php b/#jpgraph/src/Examples/piecex2.php
deleted file mode 100644
index 9dbe5f11..00000000
--- a/#jpgraph/src/Examples/piecex2.php
+++ /dev/null
@@ -1,70 +0,0 @@
-SetFrame(false);
-
-// Uncomment this line to add a drop shadow to the border
-// $graph->SetShadow();
-
-// Setup title
-$graph->title->Set("PiePlotC");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,18);
-$graph->title->SetMargin(8); // Add a little bit more margin from the top
-
-// Create the pie plot
-$p1 = new PiePlotC($data);
-
-// Set size of pie
-$p1->SetSize(0.35);
-
-// Label font and color setup
-$p1->value->SetFont(FF_ARIAL,FS_BOLD,12);
-$p1->value->SetColor('white');
-
-$p1->value->Show();
-
-// Setup the title on the center circle
-$p1->midtitle->Set("Test mid\nRow 1\nRow 2");
-$p1->midtitle->SetFont(FF_ARIAL,FS_NORMAL,14);
-
-// Set color for mid circle
-$p1->SetMidColor('yellow');
-
-// Use percentage values in the legends values (This is also the default)
-$p1->SetLabelType(PIE_VALUE_PER);
-
-// The label array values may have printf() formatting in them. The argument to the
-// form,at string will be the value of the slice (either the percetage or absolute
-// depending on what was specified in the SetLabelType() above.
-$lbl = array("adam\n%.1f%%","bertil\n%.1f%%","johan\n%.1f%%",
- "peter\n%.1f%%","daniel\n%.1f%%","erik\n%.1f%%");
-$p1->SetLabels($lbl);
-
-// Uncomment this line to remove the borders around the slices
-// $p1->ShowBorder(false);
-
-// Add drop shadow to slices
-$p1->SetShadow();
-
-// Explode all slices 15 pixels
-$p1->ExplodeAll(15);
-
-// Add plot to pie graph
-$graph->Add($p1);
-
-// .. and send the image on it's marry way to the browser
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pieex1.php b/#jpgraph/src/Examples/pieex1.php
deleted file mode 100644
index 156d6e2e..00000000
--- a/#jpgraph/src/Examples/pieex1.php
+++ /dev/null
@@ -1,32 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set("Example 1 Pie plot");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,14);
-$graph->title->SetColor("brown");
-
-// Create pie plot
-$p1 = new PiePlot($data);
-//$p1->SetSliceColors(array("red","blue","yellow","green"));
-$p1->SetTheme("earth");
-
-$p1->value->SetFont(FF_ARIAL,FS_NORMAL,10);
-// Set how many pixels each slice should explode
-$p1->Explode(array(0,15,15,25,15));
-
-
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pieex2.php b/#jpgraph/src/Examples/pieex2.php
deleted file mode 100644
index 195d9755..00000000
--- a/#jpgraph/src/Examples/pieex2.php
+++ /dev/null
@@ -1,24 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set("Example 2 Pie plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create
-$p1 = new PiePlot($data);
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May","Jun","Jul"));
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pieex3.php b/#jpgraph/src/Examples/pieex3.php
deleted file mode 100644
index a7795c3a..00000000
--- a/#jpgraph/src/Examples/pieex3.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set("Multiple - Pie plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create plots
-$size=0.13;
-$p1 = new PiePlot($data);
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May"));
-$p1->SetSize($size);
-$p1->SetCenter(0.25,0.32);
-$p1->value->SetFont(FF_FONT0);
-$p1->title->Set("2001");
-
-$p2 = new PiePlot($data);
-$p2->SetSize($size);
-$p2->SetCenter(0.65,0.32);
-$p2->value->SetFont(FF_FONT0);
-$p2->title->Set("2002");
-
-$p3 = new PiePlot($data);
-$p3->SetSize($size);
-$p3->SetCenter(0.25,0.75);
-$p3->value->SetFont(FF_FONT0);
-$p3->title->Set("2003");
-
-$p4 = new PiePlot($data);
-$p4->SetSize($size);
-$p4->SetCenter(0.65,0.75);
-$p4->value->SetFont(FF_FONT0);
-$p4->title->Set("2004");
-
-$graph->Add($p1);
-$graph->Add($p2);
-$graph->Add($p3);
-$graph->Add($p4);
-
-$graph->Stroke();
-
-?>
-
-
-
diff --git a/#jpgraph/src/Examples/pieex4.php b/#jpgraph/src/Examples/pieex4.php
deleted file mode 100644
index 58544267..00000000
--- a/#jpgraph/src/Examples/pieex4.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetShadow();
-
-$graph->title->Set("Example 4 of pie plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$p1 = new PiePlot($data);
-$p1->value->SetFont(FF_FONT1,FS_BOLD);
-$p1->value->SetColor("darkred");
-$p1->SetSize(0.3);
-$p1->SetCenter(0.4);
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May"));
-$graph->Add($p1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pieex5.php b/#jpgraph/src/Examples/pieex5.php
deleted file mode 100644
index 808ab3e9..00000000
--- a/#jpgraph/src/Examples/pieex5.php
+++ /dev/null
@@ -1,31 +0,0 @@
-SetShadow();
-
-// Setup graph title
-$graph->title->Set("Example 5 of pie plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Create pie plot
-$p1 = new PiePlot($data);
-$p1->value->SetFont(FF_VERDANA,FS_BOLD);
-$p1->value->SetColor("darkred");
-$p1->SetSize(0.3);
-$p1->SetCenter(0.4);
-$p1->SetLegends(array("Jan","Feb","Mar","Apr","May"));
-//$p1->SetStartAngle(M_PI/8);
-$p1->ExplodeSlice(3);
-
-$graph->Add($p1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pieex6.php b/#jpgraph/src/Examples/pieex6.php
deleted file mode 100644
index 46621e70..00000000
--- a/#jpgraph/src/Examples/pieex6.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetShadow();
-
-// Setup title
-$graph->title->Set("Example of pie plot with absolute labels");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// The pie plot
-$p1 = new PiePlot($data);
-
-// Move center of pie to the left to make better room
-// for the legend
-$p1->SetCenter(0.35,0.5);
-
-// No border
-$p1->ShowBorder(false);
-
-// Label font and color setup
-$p1->value->SetFont(FF_FONT1,FS_BOLD);
-$p1->value->SetColor("darkred");
-
-// Use absolute values (type==1)
-$p1->SetLabelType(PIE_VALUE_ABS);
-
-// Label format
-$p1->value->SetFormat("$%d");
-$p1->value->Show();
-
-// Size of pie in fraction of the width of the graph
-$p1->SetSize(0.3);
-
-// Legends
-$p1->SetLegends(array("May ($%d)","June ($%d)","July ($%d)","Aug ($%d)"));
-$graph->legend->Pos(0.05,0.15);
-
-$graph->Add($p1);
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/pieex7.php b/#jpgraph/src/Examples/pieex7.php
deleted file mode 100644
index 77f46102..00000000
--- a/#jpgraph/src/Examples/pieex7.php
+++ /dev/null
@@ -1,52 +0,0 @@
-SetShadow();
-
-// Setup title
-$graph->title->Set("Pie plot with absolute labels");
-$graph->subtitle->Set('(With hidden 0 labels)');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// The pie plot
-$p1 = new PiePlot($data);
-
-
-// Move center of pie to the left to make better room
-// for the legend
-$p1->SetCenter(0.35,0.5);
-
-// No border
-$p1->ShowBorder(false);
-
-// Label font and color setup
-$p1->value->SetFont(FF_FONT1,FS_BOLD);
-$p1->value->SetColor("darkred");
-
-// Use absolute values (type==1)
-$p1->SetLabelType(PIE_VALUE_ABS);
-
-// Label format
-$p1->value->SetFormat("$%d");
-$p1->value->HideZero();
-$p1->value->Show();
-
-// Size of pie in fraction of the width of the graph
-$p1->SetSize(0.3);
-
-// Legends
-$p1->SetLegends(array("May ($%d)","June ($%d)","July ($%d)","Aug ($%d)"));
-$graph->legend->Pos(0.05,0.2);
-
-$graph->Add($p1);
-$graph->Stroke();
-?>
-
-
diff --git a/#jpgraph/src/Examples/pieex8.php b/#jpgraph/src/Examples/pieex8.php
deleted file mode 100644
index 0ca17859..00000000
--- a/#jpgraph/src/Examples/pieex8.php
+++ /dev/null
@@ -1,33 +0,0 @@
-SetShadow();
-
-// Title setup
-$graph->title->Set("Adjusting the label pos");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Setup the pie plot
-$p1 = new PiePlot($data);
-
-// Adjust size and position of plot
-$p1->SetSize(0.4);
-$p1->SetCenter(0.5,0.52);
-
-// Setup slice labels and move them into the plot
-$p1->value->SetFont(FF_FONT1,FS_BOLD);
-$p1->value->SetColor("darkred");
-$p1->SetLabelPos(0.6);
-
-// Finally add the plot
-$graph->Add($p1);
-
-// ... and stroke it
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/pieex9.php b/#jpgraph/src/Examples/pieex9.php
deleted file mode 100644
index 2354d06d..00000000
--- a/#jpgraph/src/Examples/pieex9.php
+++ /dev/null
@@ -1,39 +0,0 @@
-SetShadow();
-
-// Title setup
-$graph->title->Set("Exploding all slices");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Setup the pie plot
-$p1 = new PiePlot($data);
-
-// Adjust size and position of plot
-$p1->SetSize(0.35);
-$p1->SetCenter(0.5,0.52);
-
-// Setup slice labels and move them into the plot
-$p1->value->SetFont(FF_FONT1,FS_BOLD);
-$p1->value->SetColor("darkred");
-$p1->SetLabelPos(0.65);
-
-// Explode all slices
-$p1->ExplodeAll(10);
-
-// Add drop shadow
-$p1->SetShadow();
-
-// Finally add the plot
-$graph->Add($p1);
-
-// ... and stroke it
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/pielabelsex1.php b/#jpgraph/src/Examples/pielabelsex1.php
deleted file mode 100644
index d2cf93a0..00000000
--- a/#jpgraph/src/Examples/pielabelsex1.php
+++ /dev/null
@@ -1,38 +0,0 @@
-title->Set("Label guide lines");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-$graph->title->SetColor("darkblue");
-$graph->legend->Pos(0.1,0.2);
-
-
-// Create pie plot
-$p1 = new PiePlot($data);
-$p1->SetCenter(0.5,0.55);
-$p1->SetSize(0.3);
-
-// Enable and set policy for guide-lines
-$p1->SetGuideLines();
-$p1->SetGuideLinesAdjust(1.4);
-
-// Setup the labels
-$p1->SetLabelType(PIE_VALUE_PER);
-$p1->value->Show();
-$p1->value->SetFont(FF_ARIAL,FS_NORMAL,9);
-$p1->value->SetFormat('%2.1f%%');
-
-// Add and stroke
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pielabelsex2.php b/#jpgraph/src/Examples/pielabelsex2.php
deleted file mode 100644
index bb3cc2ab..00000000
--- a/#jpgraph/src/Examples/pielabelsex2.php
+++ /dev/null
@@ -1,38 +0,0 @@
-title->Set("Label guide lines");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-$graph->title->SetColor("darkblue");
-$graph->legend->Pos(0.1,0.2);
-
-
-// Create pie plot
-$p1 = new PiePlot($data);
-$p1->SetCenter(0.5,0.55);
-$p1->SetSize(0.3);
-
-// Enable and set policy for guide-lines. Make labels line up vertically
-$p1->SetGuideLines(true,false);
-$p1->SetGuideLinesAdjust(1.5);
-
-// Setup the labels
-$p1->SetLabelType(PIE_VALUE_PER);
-$p1->value->Show();
-$p1->value->SetFont(FF_ARIAL,FS_NORMAL,9);
-$p1->value->SetFormat('%2.1f%%');
-
-// Add and stroke
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pielabelsex3.php b/#jpgraph/src/Examples/pielabelsex3.php
deleted file mode 100644
index cff6d40f..00000000
--- a/#jpgraph/src/Examples/pielabelsex3.php
+++ /dev/null
@@ -1,39 +0,0 @@
-title->Set("Label guide lines");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-$graph->title->SetColor("darkblue");
-$graph->legend->Pos(0.1,0.2);
-
-
-// Create pie plot
-$p1 = new PiePlot($data);
-$p1->SetCenter(0.5,0.55);
-$p1->SetSize(0.3);
-
-// Enable and set policy for guide-lines. Make labels line up vertically
-// and force guide lines to always beeing used
-$p1->SetGuideLines(true,false,true);
-$p1->SetGuideLinesAdjust(1.5);
-
-// Setup the labels
-$p1->SetLabelType(PIE_VALUE_PER);
-$p1->value->Show();
-$p1->value->SetFont(FF_ARIAL,FS_NORMAL,9);
-$p1->value->SetFormat('%2.1f%%');
-
-// Add and stroke
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pielabelsex4.php b/#jpgraph/src/Examples/pielabelsex4.php
deleted file mode 100644
index 5187b3c5..00000000
--- a/#jpgraph/src/Examples/pielabelsex4.php
+++ /dev/null
@@ -1,38 +0,0 @@
-title->Set("Label guide lines");
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-$graph->title->SetColor("darkblue");
-$graph->legend->Pos(0.1,0.2);
-
-
-// Create pie plot
-$p1 = new PiePlot($data);
-$p1->SetCenter(0.5,0.55);
-$p1->SetSize(0.3);
-
-// Enable and set policy for guide-lines. Make labels line up vertically
-$p1->SetGuideLines(true,false);
-$p1->SetGuideLinesAdjust(1.1);
-
-// Setup the labels
-$p1->SetLabelType(PIE_VALUE_PER);
-$p1->value->Show();
-$p1->value->SetFont(FF_ARIAL,FS_NORMAL,9);
-$p1->value->SetFormat('%2.1f%%');
-
-// Add and stroke
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pielabelsex5.php b/#jpgraph/src/Examples/pielabelsex5.php
deleted file mode 100644
index 22e697d3..00000000
--- a/#jpgraph/src/Examples/pielabelsex5.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetShadow();
-
-// Set A title for the plot
-$graph->title->Set('String labels with values');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-$graph->title->SetColor('black');
-
-// Create pie plot
-$p1 = new PiePlot($data);
-$p1->SetCenter(0.5,0.5);
-$p1->SetSize(0.3);
-
-// Setup the labels to be displayed
-$p1->SetLabels($labels);
-
-// This method adjust the position of the labels. This is given as fractions
-// of the radius of the Pie. A value < 1 will put the center of the label
-// inside the Pie and a value >= 1 will pout the center of the label outside the
-// Pie. By default the label is positioned at 0.5, in the middle of each slice.
-$p1->SetLabelPos(1);
-
-// Setup the label formats and what value we want to be shown (The absolute)
-// or the percentage.
-$p1->SetLabelType(PIE_VALUE_PER);
-$p1->value->Show();
-$p1->value->SetFont(FF_ARIAL,FS_NORMAL,9);
-$p1->value->SetColor('darkgray');
-
-// Add and stroke
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/plotbanddensity_ex0.php b/#jpgraph/src/Examples/plotbanddensity_ex0.php
deleted file mode 100644
index 3615a957..00000000
--- a/#jpgraph/src/Examples/plotbanddensity_ex0.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale('textlin');
-$graph->SetMargin(25,10,20,25);
-$graph->SetBox(true);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_3DPLANE,15,35,'khaki4');
-$band->SetDensity(10);
-$band->ShowFrame(true);
-$graph->AddBand($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_3DPLANE, Density=10');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/plotbanddensity_ex1.php b/#jpgraph/src/Examples/plotbanddensity_ex1.php
deleted file mode 100644
index ed07487e..00000000
--- a/#jpgraph/src/Examples/plotbanddensity_ex1.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale('textlin');
-$graph->SetMargin(25,10,20,25);
-$graph->SetBox(true);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_3DPLANE,15,35,'khaki4');
-$band->SetDensity(40);
-$band->ShowFrame(true);
-$graph->AddBand($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_3DPLANE, Density=40');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/plotbanddensity_ex2.php b/#jpgraph/src/Examples/plotbanddensity_ex2.php
deleted file mode 100644
index 908efdf5..00000000
--- a/#jpgraph/src/Examples/plotbanddensity_ex2.php
+++ /dev/null
@@ -1,38 +0,0 @@
-SetScale('textlin');
-$graph->SetMargin(25,10,20,25);
-$graph->SetBox(true);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-$graph->ygrid->Show(false);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_3DPLANE,15,35,'khaki4');
-$band->SetDensity(80);
-$band->ShowFrame(true);
-$graph->AddBand($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_3DPLANE, Density=80');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/plotlineex1.php b/#jpgraph/src/Examples/plotlineex1.php
deleted file mode 100644
index 43a8016e..00000000
--- a/#jpgraph/src/Examples/plotlineex1.php
+++ /dev/null
@@ -1,36 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(40,20,50,70);
-
-$graph->legend->SetPos(0.5,0.97,'center','bottom');
-
-$graph->title->Set('Plot line legend');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);
-
-$graph->SetTitleBackground('lightblue:1.3',TITLEBKG_STYLE2,TITLEBKG_FRAME_BEVEL);
-$graph->SetTitleBackgroundFillStyle(TITLEBKG_FILLSTYLE_HSTRIPED,'lightblue','navy');
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->value->Show();
-$bplot->value->SetFont(FF_VERDANA,FS_BOLD,8);
-$bplot->SetValuePos('top');
-$bplot->SetLegend('Bar Legend');
-$graph->Add($bplot);
-
-$pline = new PlotLine(HORIZONTAL,8,'red',2);
-$pline->SetLegend('Line Legend');
-$graph->legend->SetColumns(10);
-$graph->Add($pline);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/polar_csimex1.php b/#jpgraph/src/Examples/polar_csimex1.php
deleted file mode 100644
index ffaac176..00000000
--- a/#jpgraph/src/Examples/polar_csimex1.php
+++ /dev/null
@@ -1,69 +0,0 @@
-SetScale('log',100);
-$graph->SetType(POLAR_180);
-
-// Hide frame around graph (by setting width=0)
-$graph->SetFrame(true,'white',1);
-
-// Show both major and minor grid lines
-$graph->axis->ShowGrid(true,true);
-
-// Set color for gradient lines
-$graph->axis->SetGridColor('lightblue:0.9','lightblue:0.9','lightblue:0.9');
-
-// Set label and axis colors
-$graph->axis->SetColor('black','navy','darkred');
-
-// Draw the ticks on the bottom side of the radius axis
-$graph->axis->SetTickSide(SIDE_DOWN);
-
-// Increase the margin for the labels since we changed the
-// side of the ticks.
-$graph->axis->SetLabelMargin(6);
-
-// Change fonts
-$graph->axis->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->axis->SetAngleFont(FF_ARIAL,FS_NORMAL,8);
-
-// Setup axis title
-$graph->axis->SetTitle('Coverage (in meter)','middle');
-$graph->axis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Setup graph title
-$graph->title->Set('Polar plot #9');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('navy');
-
-// Setup tab title
-$graph->tabtitle->Set('Microphone #1');
-$graph->tabtitle->SetColor('brown:0.5','lightyellow');
-
-// Setup the polar plot with CSIM targets for the marks
-$p = new PolarPlot($data);
-$p->SetFillColor('lightblue@0.5');
-$p->mark->SetType(MARK_SQUARE);
-$p->mark->SetWidth(10);
-$p->SetCSIMTargets( $targets );
-
-$graph->Add($p);
-
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/polarclockex1.php b/#jpgraph/src/Examples/polarclockex1.php
deleted file mode 100644
index bdf9008e..00000000
--- a/#jpgraph/src/Examples/polarclockex1.php
+++ /dev/null
@@ -1,55 +0,0 @@
-SetScale('lin',150);
-
-$graph->SetMarginColor('#FFE6C0');
-$graph->SetType(POLAR_360);
-$graph->SetMargin(40,40,50,40);
-$graph->SetClockwise(true);
-
-//$graph->Set90AndMargin(60,50,70,120);
-
-$graph->SetBox(true);
-$graph->SetFrame(false);
-$graph->axis->ShowGrid(true,false,true);
-$graph->axis->SetGridColor('gray','gray','gray');
-
-$graph->axis->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->axis->SetTitle('X-Axis','center');
-
-$graph->axis->SetColor('black','black','darkred');
-$graph->axis->SetAngleFont(FF_ARIAL,FS_NORMAL,8);
-
-$graph->title->Set('Clockwise polar plot');
-$graph->title->SetFont(FF_COMIC,FS_NORMAL,16);
-$graph->title->SetColor('navy');
-
-
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightblue@0.5');
-$graph->Add($p);
-
-//$p2 = new PolarPlot($data2);
-//$p2->SetFillColor('red@0.5');
-//$graph->Add($p2);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarclockex2.php b/#jpgraph/src/Examples/polarclockex2.php
deleted file mode 100644
index 11cdeca6..00000000
--- a/#jpgraph/src/Examples/polarclockex2.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetScale('lin',150);
-
-$graph->SetMarginColor('#FFE6C0');
-$graph->SetType(POLAR_360);
-$graph->SetClockwise(true);
-$graph->Set90AndMargin(40,40,50,40);
-
-$graph->SetBox(true);
-$graph->SetFrame(false);
-$graph->axis->ShowGrid(true,false,true);
-$graph->axis->SetGridColor('gray','gray','gray');
-
-$graph->axis->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->axis->SetTitle('X-Axis','center');
-
-$graph->axis->SetColor('black','black','darkred');
-$graph->axis->SetAngleFont(FF_ARIAL,FS_NORMAL,8);
-
-$graph->title->Set('Clockwise polar plot (rotated)');
-$graph->title->SetFont(FF_COMIC,FS_NORMAL,16);
-$graph->title->SetColor('navy');
-
-
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightblue@0.5');
-$graph->Add($p);
-
-//$p2 = new PolarPlot($data2);
-//$p2->SetFillColor('red@0.5');
-//$graph->Add($p2);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex0-180.php b/#jpgraph/src/Examples/polarex0-180.php
deleted file mode 100644
index 4fa344fa..00000000
--- a/#jpgraph/src/Examples/polarex0-180.php
+++ /dev/null
@@ -1,27 +0,0 @@
-SetScale('lin');
-$graph->SetMargin(35,35,25,25);
-$graph->SetType(POLAR_180);
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightblue@0.5');
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex0.php b/#jpgraph/src/Examples/polarex0.php
deleted file mode 100644
index b11aa6e1..00000000
--- a/#jpgraph/src/Examples/polarex0.php
+++ /dev/null
@@ -1,26 +0,0 @@
-SetScale('lin');
-$graph->SetMargin(35,35,25,25);
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightblue@0.5');
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex1.php b/#jpgraph/src/Examples/polarex1.php
deleted file mode 100644
index b0c7f8af..00000000
--- a/#jpgraph/src/Examples/polarex1.php
+++ /dev/null
@@ -1,30 +0,0 @@
-SetScale('lin');
-$graph->SetType(POLAR_180);
-//$graph->SetAngle(90);
-//$graph->SetMargin(30-150,30-150,30+150,30+150);
-$graph->Set90AndMargin(40,40,40,40);
-//$graph->axis->SetLabelAlign('right','center');
-
-$p = new PolarPlot($data);
-$p->SetLegend("Test");
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex10.php b/#jpgraph/src/Examples/polarex10.php
deleted file mode 100644
index d864a23d..00000000
--- a/#jpgraph/src/Examples/polarex10.php
+++ /dev/null
@@ -1,66 +0,0 @@
-SetScale('log',100);
-$graph->SetType(POLAR_360);
-
-// Hide frame around graph (by setting width=0)
-$graph->SetFrame(true,'white',1);
-
-// Show both major and minor grid lines
-$graph->axis->ShowGrid(true,true);
-
-// Set color for gradient lines
-$graph->axis->SetGridColor('lightblue:0.9','lightblue:0.9','lightblue:0.9');
-
-// Set label and axis colors
-$graph->axis->SetColor('black','navy','darkred');
-
-// Draw the ticks on the bottom side of the radius axis
-$graph->axis->SetTickSide(SIDE_DOWN);
-
-// Increase the margin for the labels since we changed the
-// side of the ticks.
-$graph->axis->SetLabelMargin(6);
-
-// Change fonts
-$graph->axis->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->axis->SetAngleFont(FF_ARIAL,FS_NORMAL,8);
-
-
-// Setup graph title
-$graph->title->Set('Polar plot #10');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('navy');
-
-// Setup tab title
-$graph->tabtitle->Set('Microphone #1');
-$graph->tabtitle->SetColor('brown:0.5','lightyellow');
-
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightblue@0.5');
-$p->mark->SetType(MARK_SQUARE);
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex2.php b/#jpgraph/src/Examples/polarex2.php
deleted file mode 100644
index d4a9779a..00000000
--- a/#jpgraph/src/Examples/polarex2.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale('lin');
-
-$graph->title->Set('Polar plot #2');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->title->SetColor('navy');
-
-// Hide last labels on the Radius axis
-// They intersect with the box otherwise
-$graph->axis->HideLastTickLabel();
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightred@0.5');
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex3-lin.php b/#jpgraph/src/Examples/polarex3-lin.php
deleted file mode 100644
index 430438c9..00000000
--- a/#jpgraph/src/Examples/polarex3-lin.php
+++ /dev/null
@@ -1,33 +0,0 @@
-SetScale('lin',200);
-$graph->SetType(POLAR_180);
-
-$graph->title->Set('Polar plot #3');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->title->SetColor('navy');
-
-$graph->axis->ShowGrid(true,false);
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightred@0.5');
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex3.php b/#jpgraph/src/Examples/polarex3.php
deleted file mode 100644
index 82bf18a2..00000000
--- a/#jpgraph/src/Examples/polarex3.php
+++ /dev/null
@@ -1,33 +0,0 @@
-SetScale('log',100);
-$graph->SetType(POLAR_180);
-
-$graph->title->Set('Polar plot #3');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->title->SetColor('navy');
-
-$graph->axis->ShowGrid(true,false);
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightred@0.5');
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex4.php b/#jpgraph/src/Examples/polarex4.php
deleted file mode 100644
index a4fb1d08..00000000
--- a/#jpgraph/src/Examples/polarex4.php
+++ /dev/null
@@ -1,34 +0,0 @@
-SetScale('log');
-
-$graph->title->Set('Polar plot #4');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->title->SetColor('navy');
-
-// Hide last labels on the Radius axis
-// They intersect with the box otherwise
-$graph->axis->HideLastTickLabel();
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightred@0.5');
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex5.php b/#jpgraph/src/Examples/polarex5.php
deleted file mode 100644
index 7da58020..00000000
--- a/#jpgraph/src/Examples/polarex5.php
+++ /dev/null
@@ -1,37 +0,0 @@
-SetScale('log');
-
-// Show both major and minor grid lines
-$graph->axis->ShowGrid(true,true);
-
-$graph->title->Set('Polar plot #5');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->title->SetColor('navy');
-
-// Hide last labels on the Radius axis
-// They intersect with the box otherwise
-$graph->axis->HideLastTickLabel();
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightred@0.5');
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex6.php b/#jpgraph/src/Examples/polarex6.php
deleted file mode 100644
index 21ae6a27..00000000
--- a/#jpgraph/src/Examples/polarex6.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetScale('log');
-$graph->SetType(POLAR_180);
-
-// Show both major and minor grid lines
-$graph->axis->ShowGrid(true,true);
-
-$graph->title->Set('Polar plot #6');
-$graph->title->SetFont(FF_FONT2,FS_BOLD);
-$graph->title->SetColor('navy');
-
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightred@0.5');
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex7-1.php b/#jpgraph/src/Examples/polarex7-1.php
deleted file mode 100644
index 5b593a19..00000000
--- a/#jpgraph/src/Examples/polarex7-1.php
+++ /dev/null
@@ -1,50 +0,0 @@
-SetScale('log',100);
-$graph->SetType(POLAR_180);
-$graph->SetPlotSize(220,250);
-
-// Hide frame around graph (by setting width=0)
-$graph->SetFrame(true,'white',1);
-
-$graph->SetBackgroundGradient('blue:1.3','brown:1.4',GRAD_HOR,BGRAD_PLOT);
-
-// Set color for gradient lines
-$graph->axis->SetGridColor('gray','gray','gray');
-
-// Setup axis title
-$graph->axis->SetTitle('Coverage (in meter)','middle');
-$graph->axis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->title->Set('Polar plot #7');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('navy');
-
-// Adjust legen box position and color
-$graph->legend->SetColor('navy','darkgray');
-$graph->legend->SetFillColor('white');
-$graph->legend->SetShadow('darkgray@0.5',5);
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightblue@0.5');
-$p->mark->SetType(MARK_SQUARE);
-$p->SetLegend("Mirophone #1\n(No amps)");
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex7-2.php b/#jpgraph/src/Examples/polarex7-2.php
deleted file mode 100644
index 959749d2..00000000
--- a/#jpgraph/src/Examples/polarex7-2.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetScale('log',100);
-$graph->SetType(POLAR_360);
-$graph->SetPlotSize(220,300);
-
-// Hide frame around graph (by setting width=0)
-$graph->SetFrame(true,'white',1);
-
-$graph->SetBackgroundGradient('blue:1.3','brown:1.4',GRAD_MIDHOR,BGRAD_PLOT);
-
-// Set color for gradient lines
-$graph->axis->SetGridColor('gray','gray','gray');
-
-$graph->title->Set('Polar plot #7-2');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('navy');
-
-// Adjust legen box position and color
-$graph->legend->SetColor('navy','darkgray');
-$graph->legend->SetFillColor('white');
-$graph->legend->SetShadow('darkgray@0.5',5);
-
-$p = new PolarPlot($data);
-$p->SetFillColor('yellow@0.6');
-$p->mark->SetType(MARK_SQUARE);
-$p->SetLegend("Mirophone #1\n(No amps)");
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex7.php b/#jpgraph/src/Examples/polarex7.php
deleted file mode 100644
index d7079a0a..00000000
--- a/#jpgraph/src/Examples/polarex7.php
+++ /dev/null
@@ -1,53 +0,0 @@
-SetScale('lin',300);
-$graph->SetType(POLAR_180);
-$graph->SetPlotSize(220,250);
-
-// Hide frame around graph (by setting width=0)
-$graph->SetFrame(true,'white',1);
-
-$graph->SetBackgroundGradient('blue:1.3','brown:1.4',GRAD_HOR,BGRAD_PLOT);
-
-// Show both major and minor grid lines
-$graph->axis->ShowGrid(true,true);
-
-// Set color for gradient lines
-$graph->axis->SetGridColor('gray','gray','gray');
-
-// Setup axis title
-$graph->axis->SetTitle('Coverage (in meter)','middle');
-$graph->axis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->title->Set('Polar plot #7');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('navy');
-
-// Adjust legen box position and color
-$graph->legend->SetColor('navy','darkgray');
-$graph->legend->SetFillColor('white');
-$graph->legend->SetShadow('darkgray@0.5',5);
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightblue@0.5');
-$p->mark->SetType(MARK_SQUARE);
-$p->SetLegend("Mirophone #1\n(No amps)");
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex8.php b/#jpgraph/src/Examples/polarex8.php
deleted file mode 100644
index 8322ebcd..00000000
--- a/#jpgraph/src/Examples/polarex8.php
+++ /dev/null
@@ -1,54 +0,0 @@
-SetScale('log',100);
-$graph->SetType(POLAR_180);
-//$graph->SetPlotSize(250,250);
-
-// Hide frame around graph (by setting width=0)
-$graph->SetFrame(true,'white',1);
-
-// Set plotarea color
-$graph->SetColor('lightblue');
-
-// Show both major and minor grid lines
-$graph->axis->ShowGrid(true,true);
-
-// Set color for gradient lines
-$graph->axis->SetGridColor('lightblue:0.8','lightblue:0.8','lightblue:0.8');
-
-// Setup axis title
-$graph->axis->SetTitle('Coverage (in meter)','middle');
-$graph->axis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->title->Set('Polar plot #8');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('navy');
-
-// Adjust legen box position and color
-$graph->legend->SetColor('navy','darkgray');
-$graph->legend->SetFillColor('white');
-$graph->legend->SetShadow('darkgray@0.5',5);
-
-$p = new PolarPlot($data);
-$p->SetFillColor('white@0.5');
-$p->mark->SetType(MARK_SQUARE);
-$p->SetLegend("Mirophone #1\n(No amps)");
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/polarex9.php b/#jpgraph/src/Examples/polarex9.php
deleted file mode 100644
index ee239ec0..00000000
--- a/#jpgraph/src/Examples/polarex9.php
+++ /dev/null
@@ -1,63 +0,0 @@
-SetScale('log',100);
-$graph->SetType(POLAR_180);
-
-// Hide frame around graph (by setting width=0)
-$graph->SetFrame(true,'white',1);
-
-// Show both major and minor grid lines
-$graph->axis->ShowGrid(true,true);
-
-// Set color for gradient lines
-$graph->axis->SetGridColor('lightblue:0.9','lightblue:0.9','lightblue:0.9');
-
-// Set label and axis colors
-$graph->axis->SetColor('black','navy','darkred');
-
-// Draw the ticks on the bottom side of the radius axis
-$graph->axis->SetTickSide(SIDE_DOWN);
-
-// Increase the margin for the labels since we changed the
-// side of the ticks.
-$graph->axis->SetLabelMargin(6);
-
-// Change fonts
-$graph->axis->SetFont(FF_ARIAL,FS_NORMAL,8);
-$graph->axis->SetAngleFont(FF_ARIAL,FS_NORMAL,8);
-
-// Setup axis title
-$graph->axis->SetTitle('Coverage (in meter)','middle');
-$graph->axis->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Setup graph title
-$graph->title->Set('Polar plot #9');
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('navy');
-
-// Setup tab title
-$graph->tabtitle->Set('Microphone #1');
-$graph->tabtitle->SetColor('brown:0.5','lightyellow');
-
-
-$p = new PolarPlot($data);
-$p->SetFillColor('lightblue@0.5');
-$p->mark->SetType(MARK_SQUARE);
-
-$graph->Add($p);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/prepaccdata_example.php b/#jpgraph/src/Examples/prepaccdata_example.php
deleted file mode 100644
index 1f1fca31..00000000
--- a/#jpgraph/src/Examples/prepaccdata_example.php
+++ /dev/null
@@ -1,61 +0,0 @@
-title->Set('Accumulated values with specified X-axis scale');
-$graph->SetScale('textlin');
-
-// Setup margin color
-$graph->SetMarginColor('green@0.95');
-
-// Adjust the margin to make room for the X-labels
-$graph->SetMargin(40,30,40,120);
-
-// Turn the tick marks out from the plot area
-$graph->xaxis->SetTickSide(SIDE_BOTTOM);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-$p0 =new LinePlot($ydata[0]);
-$p0->SetFillColor('sandybrown');
-$p1 =new LinePlot($ydata[1]);
-$p1->SetFillColor('lightblue');
-$p2 =new LinePlot($ydata[2]);
-$p2->SetFillColor('red');
-$ap = new AccLinePlot(array($p0,$p1,$p2));
-
-$graph->xaxis->SetTickLabels($xdata);
-$graph->xaxis->SetTextLabelInterval(4);
-
-// Add the plot to the graph
-$graph->Add($ap);
-
-// Set the angle for the labels to 90 degrees
-$graph->xaxis->SetLabelAngle(90);
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/pushpinex1.php b/#jpgraph/src/Examples/pushpinex1.php
deleted file mode 100644
index 4b100988..00000000
--- a/#jpgraph/src/Examples/pushpinex1.php
+++ /dev/null
@@ -1,62 +0,0 @@
-img->SetMargin(1,1,1,1);
-$graph->SetScale('linlin',0,100,0,100);
-
-// We don't want any axis to be shown
-$graph->xaxis->Hide();
-$graph->yaxis->Hide();
-
-// Use a worldmap as the background and let it fill the plot area
-$graph->SetBackgroundImage(WORLDMAP,BGIMG_FILLPLOT);
-
-// Setup a nice title with a striped bevel background
-$graph->title->Set("Pushpin graph");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('white');
-$graph->SetTitleBackground('darkgreen',TITLEBKG_STYLE1,TITLEBKG_FRAME_BEVEL);
-$graph->SetTitleBackgroundFillStyle(TITLEBKG_FILLSTYLE_HSTRIPED,'blue','darkgreen');
-
-// Finally create the scatterplot
-$sp = new ScatterPlot($datay,$datax);
-
-// We want the markers to be an image
-$sp->mark->SetType(MARK_IMG_PUSHPIN,'blue',0.6);
-
-// Install the Y-X callback for the markers
-$sp->mark->SetCallbackYX('markCallback');
-
-// ... and add it to the graph
-$graph->Add($sp);
-
-// .. and output to browser
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/pushpinex2.php b/#jpgraph/src/Examples/pushpinex2.php
deleted file mode 100644
index 000d1cc2..00000000
--- a/#jpgraph/src/Examples/pushpinex2.php
+++ /dev/null
@@ -1,63 +0,0 @@
-img->SetMargin(1,1,1,1);
-$graph->SetScale('linlin',0,100,0,100);
-
-// We don't want any axis to be shown
-$graph->xaxis->Hide();
-$graph->yaxis->Hide();
-
-// Use a worldmap as the background and let it fill the plot area
-$graph->SetBackgroundImage(WORLDMAP,BGIMG_FILLPLOT);
-
-// Setup a nice title with a striped bevel background
-$graph->title->Set("Pushpin graph");
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->SetColor('white');
-$graph->SetTitleBackground('darkgreen',TITLEBKG_STYLE1,TITLEBKG_FRAME_BEVEL);
-$graph->SetTitleBackgroundFillStyle(TITLEBKG_FILLSTYLE_HSTRIPED,'blue','darkgreen');
-
-// Finally create the lineplot
-$lp = new LinePlot($datay,$datax);
-$lp->SetColor('lightgray');
-
-// We want the markers to be an image
-$lp->mark->SetType(MARK_IMG_PUSHPIN,'blue',0.6);
-
-// Install the Y-X callback for the markers
-$lp->mark->SetCallbackYX('markCallback');
-
-// ... and add it to the graph
-$graph->Add($lp);
-
-// .. and output to browser
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/qr-input.txt b/#jpgraph/src/Examples/qr-input.txt
deleted file mode 100644
index 1b3c2bcd..00000000
--- a/#jpgraph/src/Examples/qr-input.txt
+++ /dev/null
@@ -1 +0,0 @@
-01234567890
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/qr_template.php b/#jpgraph/src/Examples/qr_template.php
deleted file mode 100644
index e54ea782..00000000
--- a/#jpgraph/src/Examples/qr_template.php
+++ /dev/null
@@ -1,32 +0,0 @@
-SetModuleWidth($modulewidth);
-
-// Set Quiet zone (this should rarely need changing from the default)
-$backend->SetQuietZone($quiet);
-
-if( $back == BACKEND_IMAGE ) {
-
- $backend->Stroke($data);
-}
-else {
- $str = $backend->Stroke($data);
- echo '
'.$str.'
';
-}
-?>
diff --git a/#jpgraph/src/Examples/qrexample0.php b/#jpgraph/src/Examples/qrexample0.php
deleted file mode 100644
index 46126fe7..00000000
--- a/#jpgraph/src/Examples/qrexample0.php
+++ /dev/null
@@ -1,23 +0,0 @@
-Stroke($data);
-} catch (Exception $e) {
- $errstr = $e->GetMessage();
- echo 'QR Code error: '.$e->GetMessage()."\n";
- exit(1);
-}
-
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/qrexample00.php b/#jpgraph/src/Examples/qrexample00.php
deleted file mode 100644
index f09fcd5d..00000000
--- a/#jpgraph/src/Examples/qrexample00.php
+++ /dev/null
@@ -1,16 +0,0 @@
-Stroke($data);
-?>
\ No newline at end of file
diff --git a/#jpgraph/src/Examples/qrexample01.php b/#jpgraph/src/Examples/qrexample01.php
deleted file mode 100644
index af99deaf..00000000
--- a/#jpgraph/src/Examples/qrexample01.php
+++ /dev/null
@@ -1,19 +0,0 @@
-SetModuleWidth(5);
-
-// .. send the barcode back to the browser for the data
-$backend->Stroke($data);
-?>
diff --git a/#jpgraph/src/Examples/qrexample02.php b/#jpgraph/src/Examples/qrexample02.php
deleted file mode 100644
index 890d616c..00000000
--- a/#jpgraph/src/Examples/qrexample02.php
+++ /dev/null
@@ -1,23 +0,0 @@
-SetModuleWidth(5);
-
- // .. send the barcode back to the browser for the data
- $backend->Stroke($data);
-?>
diff --git a/#jpgraph/src/Examples/qrexample03.php b/#jpgraph/src/Examples/qrexample03.php
deleted file mode 100644
index 858eede3..00000000
--- a/#jpgraph/src/Examples/qrexample03.php
+++ /dev/null
@@ -1,27 +0,0 @@
-SetModuleWidth(5);
-
- // Store the barcode in the specifed file
- $backend->Stroke($data,$fileName);
- list($version,$errorcorrection) = $backend->GetQRInfo();
-
- echo "QR Barcode, (Version: $version-$errorcorrection), image stored in file $fileName";
-?>
diff --git a/#jpgraph/src/Examples/qrexample03.png b/#jpgraph/src/Examples/qrexample03.png
deleted file mode 100644
index 091a1cc2..00000000
Binary files a/#jpgraph/src/Examples/qrexample03.png and /dev/null differ
diff --git a/#jpgraph/src/Examples/qrexample04.php b/#jpgraph/src/Examples/qrexample04.php
deleted file mode 100644
index c86447ae..00000000
--- a/#jpgraph/src/Examples/qrexample04.php
+++ /dev/null
@@ -1,24 +0,0 @@
-SetModuleWidth(3);
-
- // Store the barcode in the specifed file
- $backend->Stroke($data);
-?>
diff --git a/#jpgraph/src/Examples/qrexample05.php b/#jpgraph/src/Examples/qrexample05.php
deleted file mode 100644
index 96f5f47a..00000000
--- a/#jpgraph/src/Examples/qrexample05.php
+++ /dev/null
@@ -1,29 +0,0 @@
-SetModuleWidth(4);
-
- // Store the barcode in the specifed file
- $backend->Stroke($data);
-?>
diff --git a/#jpgraph/src/Examples/qrexample06.php b/#jpgraph/src/Examples/qrexample06.php
deleted file mode 100644
index 046627f2..00000000
--- a/#jpgraph/src/Examples/qrexample06.php
+++ /dev/null
@@ -1,26 +0,0 @@
-SetImgFormat('jpeg',80);
-
- // Set the module size
- $backend->SetModuleWidth(4);
-
- // Store the barcode in the specifed file
- $backend->Stroke($data);
-?>
diff --git a/#jpgraph/src/Examples/qrexample07.php b/#jpgraph/src/Examples/qrexample07.php
deleted file mode 100644
index 68dde156..00000000
--- a/#jpgraph/src/Examples/qrexample07.php
+++ /dev/null
@@ -1,26 +0,0 @@
-SetModuleWidth(4);
-
- // Store the barcode in the specifed file
- $backend->Stroke($data);
-?>
diff --git a/#jpgraph/src/Examples/qrexample08.php b/#jpgraph/src/Examples/qrexample08.php
deleted file mode 100644
index 08eb947b..00000000
--- a/#jpgraph/src/Examples/qrexample08.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetModuleWidth(5);
-
- // .. send the barcode back to the browser for the data in the file
- $backend->StrokeFromFile($readFromFilename);
-?>
diff --git a/#jpgraph/src/Examples/qrexample09.php b/#jpgraph/src/Examples/qrexample09.php
deleted file mode 100644
index faa2a5de..00000000
--- a/#jpgraph/src/Examples/qrexample09.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetModuleWidth(5);
-
- // Use blue and white colors instead
- $backend->SetColor('navy','white');
-
- // .. send the barcode back to the browser for the data in the file
- $backend->StrokeFromFile($readFromFilename);
-?>
diff --git a/#jpgraph/src/Examples/qrexample10.php b/#jpgraph/src/Examples/qrexample10.php
deleted file mode 100644
index 1232754a..00000000
--- a/#jpgraph/src/Examples/qrexample10.php
+++ /dev/null
@@ -1,26 +0,0 @@
-SetModuleWidth(3);
-
- // Set color
- $backend->SetColor('brown','white');
-
- // Store the barcode in the specifed file
- $backend->Stroke($data);
-?>
diff --git a/#jpgraph/src/Examples/qrexample11.php b/#jpgraph/src/Examples/qrexample11.php
deleted file mode 100644
index 2f3e503e..00000000
--- a/#jpgraph/src/Examples/qrexample11.php
+++ /dev/null
@@ -1,26 +0,0 @@
-SetModuleWidth($modulewidth);
-
-// Store the barcode in the specifed file
-$ps_str = $backend->Stroke($data);
-
-echo '
'.$ps_str.'
';
-?>
diff --git a/#jpgraph/src/Examples/qrexample12.php b/#jpgraph/src/Examples/qrexample12.php
deleted file mode 100644
index d1e09046..00000000
--- a/#jpgraph/src/Examples/qrexample12.php
+++ /dev/null
@@ -1,26 +0,0 @@
-SetModuleWidth($modulewidth);
-
-// Store the barcode in the specifed file
-$ps_str = $backend->Stroke($data);
-
-echo '
'.$ps_str.'
';
-?>
diff --git a/#jpgraph/src/Examples/radar_csimex1.php b/#jpgraph/src/Examples/radar_csimex1.php
deleted file mode 100644
index 1f0454d8..00000000
--- a/#jpgraph/src/Examples/radar_csimex1.php
+++ /dev/null
@@ -1,43 +0,0 @@
-title->Set('Radar with marks');
-$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
-$graph->title->SetMargin(10);
-
-$graph->SetTitles($titles);
-$graph->SetCenter(0.5,0.55);
-$graph->HideTickMarks();
-$graph->SetColor('lightgreen@0.7');
-$graph->axis->SetColor('darkgray');
-$graph->grid->SetColor('darkgray');
-$graph->grid->Show();
-
-$graph->axis->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-$graph->axis->title->SetMargin(5);
-$graph->SetGridDepth(DEPTH_BACK);
-$graph->SetSize(0.6);
-
-$plot = new RadarPlot($data);
-$plot->SetColor('red@0.2');
-$plot->SetLineWeight(2);
-$plot->SetFillColor('red@0.7');
-$plot->mark->SetType(MARK_IMG_DIAMOND,'red',0.6);
-$plot->mark->SetFillColor('darkred');
-$plot->SetCSIMTargets( $targets , $alts );
-
-$graph->Add($plot);
-$graph->StrokeCSIM();
-?>
diff --git a/#jpgraph/src/Examples/radarex1.php b/#jpgraph/src/Examples/radarex1.php
deleted file mode 100644
index a2103757..00000000
--- a/#jpgraph/src/Examples/radarex1.php
+++ /dev/null
@@ -1,16 +0,0 @@
-Add($plot);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/radarex2.php b/#jpgraph/src/Examples/radarex2.php
deleted file mode 100644
index a1400a3f..00000000
--- a/#jpgraph/src/Examples/radarex2.php
+++ /dev/null
@@ -1,21 +0,0 @@
-title->Set('Weekly goals');
-$graph->subtitle->Set('Year 2003');
-
-$plot = new RadarPlot($data);
-$plot->SetFillColor('lightred');
-$graph->SetSize(0.6);
-$graph->SetPos(0.5,0.6);
-// Add the plot and display the graph
-$graph->Add($plot);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/radarex3.php b/#jpgraph/src/Examples/radarex3.php
deleted file mode 100644
index 18fdd902..00000000
--- a/#jpgraph/src/Examples/radarex3.php
+++ /dev/null
@@ -1,21 +0,0 @@
-GetShortMonth();
-$graph->SetTitles($titles);
-
-$plot = new RadarPlot($data);
-$plot->SetFillColor('lightblue');
-
-// Add the plot and display the graph
-$graph->Add($plot);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/radarex4.php b/#jpgraph/src/Examples/radarex4.php
deleted file mode 100644
index f64f6148..00000000
--- a/#jpgraph/src/Examples/radarex4.php
+++ /dev/null
@@ -1,28 +0,0 @@
-SetShadow();
-
-// Create the titles for the axis
-$titles = $gDateLocale->GetShortMonth();
-$graph->SetTitles($titles);
-
-// Add grid lines
-$graph->grid->Show();
-$graph->grid->SetLineStyle('dashed');
-
-$plot = new RadarPlot($data);
-$plot->SetFillColor('lightblue');
-
-// Add the plot and display the graph
-$graph->Add($plot);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/radarex5.php b/#jpgraph/src/Examples/radarex5.php
deleted file mode 100644
index 6ee42aef..00000000
--- a/#jpgraph/src/Examples/radarex5.php
+++ /dev/null
@@ -1,26 +0,0 @@
-GetShortMonth();
-$graph->SetTitles($titles);
-
-// Add grid lines
-$graph->grid->Show();
-$graph->grid->SetColor('darkred');
-$graph->grid->SetLineStyle('dotted');
-
-$plot = new RadarPlot($data);
-$plot->SetFillColor('lightblue');
-
-// Add the plot and display the graph
-$graph->Add($plot);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/radarex6.1.php b/#jpgraph/src/Examples/radarex6.1.php
deleted file mode 100644
index e6f9a50e..00000000
--- a/#jpgraph/src/Examples/radarex6.1.php
+++ /dev/null
@@ -1,45 +0,0 @@
-SetShadow();
-
-// Create the titles for the axis
-$titles = $gDateLocale->GetShortMonth();
-$graph->SetTitles($titles);
-$graph->SetColor('lightyellow');
-
-// ADjust the position to make more room
-// for the legend
-$graph->SetCenter(0.4,0.55);
-$graph->SetSize(0.6);
-
-// Add grid lines
-$graph->grid->Show();
-$graph->grid->SetColor('darkred');
-$graph->grid->SetLineStyle('dotted');
-
-$plot = new RadarPlot($data);
-$plot->SetFillColor('lightblue');
-$plot->SetLegend("QA results");
-
-$plot2 = new RadarPlot($data2);
-$plot2->SetLegend("Target");
-$plot2->SetColor('red');
-$plot2->SetFill(false);
-$plot2->SetLineWeight(2);
-
-
-// Add the plot and display the graph
-$graph->Add($plot);
-$graph->Add($plot2);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/radarex6.php b/#jpgraph/src/Examples/radarex6.php
deleted file mode 100644
index d702f294..00000000
--- a/#jpgraph/src/Examples/radarex6.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetShadow();
-
-// Create the titles for the axis
-$titles = $gDateLocale->GetShortMonth();
-$graph->SetTitles($titles);
-$graph->SetColor('lightyellow');
-
-// ADjust the position to make more room
-// for the legend
-$graph->SetCenter(0.45,0.5);
-
-// Add grid lines
-$graph->grid->Show();
-$graph->grid->SetColor('darkred');
-$graph->grid->SetLineStyle('dashed');
-
-$plot = new RadarPlot($data);
-$plot->SetFillColor('lightblue');
-$plot->SetLegend("QA results");
-
-// Add the plot and display the graph
-$graph->Add($plot);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/radarex7.php b/#jpgraph/src/Examples/radarex7.php
deleted file mode 100644
index cb44c208..00000000
--- a/#jpgraph/src/Examples/radarex7.php
+++ /dev/null
@@ -1,48 +0,0 @@
-SetColor("white");
-$graph->SetShadow();
-
-// Position the graph
-$graph->SetCenter(0.4,0.55);
-
-// Setup the axis formatting
-$graph->axis->SetFont(FF_FONT1,FS_BOLD);
-$graph->axis->SetWeight(2);
-
-// Setup the grid lines
-$graph->grid->SetLineStyle("longdashed");
-$graph->grid->SetColor("navy");
-$graph->grid->Show();
-$graph->HideTickMarks();
-
-// Setup graph titles
-$graph->title->Set("Quality result");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->SetTitles(array("One","Two","Three","Four","Five","Sex","Seven","Eight","Nine","Ten"));
-// Create the first radar plot
-$plot = new RadarPlot(array(30,80,60,40,71,81,47));
-$plot->SetLegend("Goal");
-$plot->SetColor("red","lightred");
-$plot->SetFill(false);
-$plot->SetLineWeight(2);
-
-// Create the second radar plot
-$plot2 = new RadarPlot(array(70,40,30,80,31,51,14));
-$plot2->SetLegend("Actual");
-$plot2->SetColor("blue","lightred");
-
-// Add the plots to the graph
-$graph->Add($plot2);
-$graph->Add($plot);
-
-// And output the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/radarex8.1.php b/#jpgraph/src/Examples/radarex8.1.php
deleted file mode 100644
index e1f1336b..00000000
--- a/#jpgraph/src/Examples/radarex8.1.php
+++ /dev/null
@@ -1,52 +0,0 @@
-img->SetAntiAliasing();
-
-// Set background color and shadow
-$graph->SetColor("white");
-$graph->SetShadow();
-
-// Position the graph
-$graph->SetCenter(0.4,0.55);
-
-// Setup the axis formatting
-$graph->axis->SetFont(FF_FONT1,FS_BOLD);
-
-// Setup the grid lines
-$graph->grid->SetLineStyle("solid");
-$graph->grid->SetColor("navy");
-$graph->grid->Show();
-$graph->HideTickMarks();
-
-// Setup graph titles
-$graph->title->Set("Quality result");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$graph->SetTitles($gDateLocale->GetShortMonth());
-
-// Create the first radar plot
-$plot = new RadarPlot(array(70,80,60,90,71,81,47));
-$plot->SetLegend("Goal");
-$plot->SetColor("red","lightred");
-$plot->SetFill(false);
-$plot->SetLineWeight(2);
-
-// Create the second radar plot
-$plot2 = new RadarPlot(array(70,40,30,80,31,51,14));
-$plot2->SetLegend("Actual");
-$plot2->SetLineWeight(2);
-$plot2->SetColor("blue");
-$plot2->SetFill(false);
-
-// Add the plots to the graph
-$graph->Add($plot2);
-$graph->Add($plot);
-
-// And output the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/radarex8.php b/#jpgraph/src/Examples/radarex8.php
deleted file mode 100644
index 0d6b0f87..00000000
--- a/#jpgraph/src/Examples/radarex8.php
+++ /dev/null
@@ -1,51 +0,0 @@
-img->SetAntiAliasing();
-
-// Set background color and shadow
-$graph->SetColor("white");
-$graph->SetShadow();
-
-// Position the graph
-$graph->SetCenter(0.4,0.55);
-
-// Setup the axis formatting
-$graph->axis->SetFont(FF_FONT1,FS_BOLD);
-
-// Setup the grid lines
-$graph->grid->SetLineStyle("solid");
-$graph->grid->SetColor("navy");
-$graph->grid->Show();
-$graph->HideTickMarks();
-
-// Setup graph titles
-$graph->title->Set("Quality result");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->SetTitles($gDateLocale->GetShortMonth());
-
-// Create the first radar plot
-$plot = new RadarPlot(array(70,80,60,90,71,81,47));
-$plot->SetLegend("Goal");
-$plot->SetColor("red","lightred");
-$plot->SetFill(false);
-$plot->SetLineWeight(2);
-
-// Create the second radar plot
-$plot2 = new RadarPlot(array(70,40,30,80,31,51,14));
-$plot2->SetLegend("Actual");
-$plot2->SetLineWeight(2);
-$plot2->SetColor("blue");
-$plot2->SetFill(false);
-
-// Add the plots to the graph
-$graph->Add($plot2);
-$graph->Add($plot);
-
-// And output the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/radarex9.php b/#jpgraph/src/Examples/radarex9.php
deleted file mode 100644
index 465ca262..00000000
--- a/#jpgraph/src/Examples/radarex9.php
+++ /dev/null
@@ -1,33 +0,0 @@
-title->Set("Accumulated PPM");
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,12);
-
-$graph->subtitle->Set("(according to direction)");
-$graph->subtitle->SetFont(FF_VERDANA,FS_ITALIC,10);
-
-
-$graph->SetTitles($titles);
-$graph->SetCenter(0.5,0.55);
-$graph->HideTickMarks();
-$graph->SetColor('lightyellow');
-$graph->axis->SetColor('darkgray@0.3');
-$graph->grid->SetColor('darkgray@0.3');
-$graph->grid->Show();
-
-$graph->SetGridDepth(DEPTH_BACK);
-
-$plot = new RadarPlot($data);
-$plot->SetColor('red@0.2');
-$plot->SetLineWeight(1);
-$plot->SetFillColor('red@0.7');
-$graph->Add($plot);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/radarlogex1-aa.php b/#jpgraph/src/Examples/radarlogex1-aa.php
deleted file mode 100644
index 8417fb76..00000000
--- a/#jpgraph/src/Examples/radarlogex1-aa.php
+++ /dev/null
@@ -1,60 +0,0 @@
-SetScale('log');
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->Set('Logarithmic scale');
-$graph->title->SetMargin(10);
-
-// Make the radar graph fill out it's bounding box
-$graph->SetPlotSize(0.8);
-$graph->SetCenter(0.5,0.55);
-
-// Note: Enabling this results in a very noticable slow
-// down of the image generation! And more load on your
-// server.
-$graph->img->SetAntiAliasing();
-
-// Uncomment the following line if you want to supress
-// minor tick marks
-//$graph->yscale->ticks->SupressMinorTickMarks();
-
-// We want the major tick marks to be black and minor
-// slightly less noticable
-$graph->yscale->ticks->SetMarkColor('black','darkgray');
-
-// Set the axis title font
-$graph->axis->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->axis->title->SetColor('darkred:0.8');
-
-// Use blue axis
-$graph->axis->SetColor('blue');
-
-$plot = new RadarPlot($data);
-$plot->SetLineWeight(1);
-$plot->SetColor('forestgreen');
-$plot->SetFillColor('forestgreen@0.9');
-
-$plot2 = new RadarPlot($data2);
-$plot2->SetLineWeight(2);
-$plot2->SetColor('red');
-$plot2->SetFillColor('red@0.9');
-
-// Add the plot and display the graph
-$graph->Add($plot);
-$graph->Add($plot2);
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/radarlogex1.php b/#jpgraph/src/Examples/radarlogex1.php
deleted file mode 100644
index 2d08310e..00000000
--- a/#jpgraph/src/Examples/radarlogex1.php
+++ /dev/null
@@ -1,55 +0,0 @@
-SetScale('log');
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,16);
-$graph->title->Set('Logarithmic scale');
-$graph->title->SetMargin(10);
-
-// Make the radar graph fill out it's bounding box
-$graph->SetPlotSize(0.8);
-$graph->SetCenter(0.5,0.55);
-
-// Uncomment the following line if you want to supress
-// minor tick marks
-//$graph->yscale->ticks->SupressMinorTickMarks();
-
-// We want the major tick marks to be black and minor
-// slightly less noticable
-$graph->yscale->ticks->SetMarkColor('black','darkgray');
-
-// Set the axis title font
-$graph->axis->title->SetFont(FF_ARIAL,FS_BOLD,14);
-$graph->axis->title->SetColor('darkred:0.8');
-
-// Use blue axis
-$graph->axis->SetColor('blue');
-
-$plot = new RadarPlot($data);
-$plot->SetLineWeight(1);
-$plot->SetColor('forestgreen');
-$plot->SetFillColor('forestgreen@0.9');
-
-$plot2 = new RadarPlot($data2);
-$plot2->SetLineWeight(2);
-$plot2->SetColor('red');
-$plot2->SetFillColor('red@0.9');
-
-// Add the plot and display the graph
-$graph->Add($plot);
-$graph->Add($plot2);
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/radarlogex2.php b/#jpgraph/src/Examples/radarlogex2.php
deleted file mode 100644
index f347141c..00000000
--- a/#jpgraph/src/Examples/radarlogex2.php
+++ /dev/null
@@ -1,47 +0,0 @@
-img->SetAntiAliasing();
-
-// Make the spider graph fill out it's bounding box
-$graph->SetPlotSize(0.85);
-
-// Use logarithmic scale (If you don't use any SetScale()
-// the spider graph will default to linear scale
-$graph->SetScale("log");
-
-// Uncomment the following line if you want to supress
-// minor tick marks
-// $graph->yscale->ticks->SupressMinorTickMarks();
-
-// We want the major tick marks to be black and minor
-// slightly less noticable
-$graph->yscale->ticks->SetMarkColor("black","darkgray");
-
-// Set the axis title font
-$graph->axis->title->SetFont(FF_ARIAL,FS_BOLD,12);
-
-// Use blue axis
-$graph->axis->SetColor("blue");
-
-$plot = new RadarPlot($data);
-$plot->SetLineWeight(2);
-$plot->SetColor('forestgreen');
-
-// Add the plot and display the graph
-$graph->Add($plot);
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/radarmarkex1.php b/#jpgraph/src/Examples/radarmarkex1.php
deleted file mode 100644
index f5595e8a..00000000
--- a/#jpgraph/src/Examples/radarmarkex1.php
+++ /dev/null
@@ -1,35 +0,0 @@
-title->Set('Radar with marks');
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,12);
-
-$graph->SetTitles($titles);
-$graph->SetCenter(0.5,0.55);
-$graph->HideTickMarks();
-$graph->SetColor('lightgreen@0.7');
-$graph->axis->SetColor('darkgray');
-$graph->grid->SetColor('darkgray');
-$graph->grid->Show();
-
-$graph->axis->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-$graph->axis->title->SetMargin(5);
-$graph->SetGridDepth(DEPTH_BACK);
-$graph->SetSize(0.6);
-
-$plot = new RadarPlot($data);
-$plot->SetColor('red@0.2');
-$plot->SetLineWeight(1);
-$plot->SetFillColor('red@0.7');
-
-$plot->mark->SetType(MARK_IMG_SBALL,'red');
-
-$graph->Add($plot);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/rose.gif b/#jpgraph/src/Examples/rose.gif
deleted file mode 100644
index 59fe6319..00000000
Binary files a/#jpgraph/src/Examples/rose.gif and /dev/null differ
diff --git a/#jpgraph/src/Examples/rose_example.php b/#jpgraph/src/Examples/rose_example.php
deleted file mode 100644
index 7d3d7c57..00000000
--- a/#jpgraph/src/Examples/rose_example.php
+++ /dev/null
@@ -1,57 +0,0 @@
- array (0 => 79, 1 => -25, 2 => -7, 3 => 85, 4 => -26, 5 => -32, ),
- 1 => array (0 => 76, 1 => 51, 2 => 86, 3 => 12, 4 => -7, 5 => 94, ),
- 2 => array (0 => 49, 1 => 38, 2 => 7, 3 => -40, 4 => 9, 5 => -7, ),
- 3 => array ( 0 => 69, 1 => 96, 2 => 49, 3 => 7, 4 => 92, 5 => -38, ),
- 4 => array ( 0 => 68, 1 => 16, 2 => 82, 3 => -49, 4 => 50, 5 => 7, ),
- 5 => array ( 0 => -37, 1 => 28, 2 => 32, 3 => 6, 4 => 13, 5 => 57, ),
- 6 => array ( 0 => 24, 1 => -11, 2 => 7, 3 => 10, 4 => 51, 5 => 51, ),
- 7 => array ( 0 => 3, 1 => -1, 2 => -12, 3 => 61, 4 => 10, 5 => 47, ),
- 8 => array ( 0 => -47, 1 => -21, 2 => 43, 3 => 53, 4 => 36, 5 => 34, ),
-);
-
-// Create the graph. These two calls are always required
-$graph = new Graph(400,300);
-
-$graph->SetScale("textlin");
-if ($theme) {
- $graph->SetTheme(new $theme());
-}
-$theme_class = new RoseTheme;
-$graph->SetTheme($theme_class);
-
-$plot = array();
-// Create the bar plots
-for ($i = 0; $i < 4; $i++) {
- $plot[$i] = new BarPlot($data[$i]);
- $plot[$i]->SetLegend('plot'.($i+1));
-}
-//$acc1 = new AccBarPlot(array($plot[0], $plot[1]));
-//$acc1->value->Show();
-$gbplot = new GroupBarPlot(array($plot[2], $plot[1] ));
-
-for ($i = 4; $i < 8; $i++) {
- $plot[$i] = new LinePlot($data[$i]);
- $plot[$i]->SetLegend('plot'.$i);
- $plot[$i]->value->Show();
-}
-
-$graph->Add($gbplot);
-$graph->Add($plot[4]);
-
-$title = "RoseTheme Example";
-$title = mb_convert_encoding($title,'UTF-8');
-$graph->title->Set($title);
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/rotateex1.php b/#jpgraph/src/Examples/rotateex1.php
deleted file mode 100644
index a90a6003..00000000
--- a/#jpgraph/src/Examples/rotateex1.php
+++ /dev/null
@@ -1,46 +0,0 @@
-SetAngle(40);
-$graph->img->SetMargin(80,80,80,80);
-$graph->SetScale("textlin");
-$graph->SetY2Scale("lin");
-$graph->SetShadow();
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot2=new LinePlot($y2data);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-$graph->AddY2($lineplot2);
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-$graph->y2axis->SetColor("orange");
-
-$graph->title->Set("Example 1 rotated graph (40 degree)");
-$graph->legend->Pos(0.05,0.1,"right","top");
-
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
-
-$lineplot->SetColor("blue");
-$lineplot->SetWeight(2);
-
-$lineplot2->SetColor("orange");
-$lineplot2->SetWeight(2);
-
-$graph->yaxis->SetColor("blue");
-
-$lineplot->SetLegend("Plot 1");
-$lineplot2->SetLegend("Plot 2");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/rotex0.php b/#jpgraph/src/Examples/rotex0.php
deleted file mode 100644
index 83d26bb8..00000000
--- a/#jpgraph/src/Examples/rotex0.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetMargin(30,90,30,30);
-$graph->SetScale("textlin");
-
-$line = new LinePlot($ydata);
-$line->SetLegend('2002');
-$line->SetColor('darkred');
-$line->SetWeight(2);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/rotex1.php b/#jpgraph/src/Examples/rotex1.php
deleted file mode 100644
index f087b98e..00000000
--- a/#jpgraph/src/Examples/rotex1.php
+++ /dev/null
@@ -1,24 +0,0 @@
-SetMargin(30,90,30,30);
-$graph->SetScale("textlin");
-
-$graph->img->SetAngle(45);
-
-$line = new LinePlot($ydata);
-$line->SetLegend('2002');
-$line->SetColor('darkred');
-$line->SetWeight(2);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/rotex2.php b/#jpgraph/src/Examples/rotex2.php
deleted file mode 100644
index bfdea5a7..00000000
--- a/#jpgraph/src/Examples/rotex2.php
+++ /dev/null
@@ -1,24 +0,0 @@
-SetMargin(30,90,30,30);
-$graph->SetScale("textlin");
-
-$graph->img->SetAngle(90);
-
-$line = new LinePlot($ydata);
-$line->SetLegend('2002');
-$line->SetColor('darkred');
-$line->SetWeight(2);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/rotex3.php b/#jpgraph/src/Examples/rotex3.php
deleted file mode 100644
index 3a0a03d4..00000000
--- a/#jpgraph/src/Examples/rotex3.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetMargin(30,90,30,30);
-$graph->SetScale("textlin");
-
-$graph->img->SetAngle(45);
-$graph->img->SetCenter(floor(270/2),floor(170/2));
-
-$line = new LinePlot($ydata);
-$line->SetLegend('2002');
-$line->SetColor('darkred');
-$line->SetWeight(2);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/rotex4.php b/#jpgraph/src/Examples/rotex4.php
deleted file mode 100644
index 9c01a7b2..00000000
--- a/#jpgraph/src/Examples/rotex4.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetMargin(30,90,30,30);
-$graph->SetScale("textlin");
-
-$graph->img->SetAngle(90);
-$graph->img->SetCenter(floor(270/2),floor(170/2));
-
-$line = new LinePlot($ydata);
-$line->SetLegend('2002');
-$line->SetColor('darkred');
-$line->SetWeight(2);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/rotex5.php b/#jpgraph/src/Examples/rotex5.php
deleted file mode 100644
index bdf0d93f..00000000
--- a/#jpgraph/src/Examples/rotex5.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetMargin(30,90,30,30);
-$graph->SetScale("textlin");
-
-$graph->img->SetAngle(-30);
-$graph->img->SetCenter(30,170-30);
-
-$line = new LinePlot($ydata);
-$line->SetLegend('2002');
-$line->SetColor('darkred');
-$line->SetWeight(2);
-$graph->Add($line);
-
-// Output graph
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/saab_95.jpg b/#jpgraph/src/Examples/saab_95.jpg
deleted file mode 100644
index 189b0d48..00000000
Binary files a/#jpgraph/src/Examples/saab_95.jpg and /dev/null differ
diff --git a/#jpgraph/src/Examples/scatter_csimex1.php b/#jpgraph/src/Examples/scatter_csimex1.php
deleted file mode 100644
index 2ab4306d..00000000
--- a/#jpgraph/src/Examples/scatter_csimex1.php
+++ /dev/null
@@ -1,44 +0,0 @@
-SetShadow();
-$graph->SetScale("linlin");
-
-//$graph->img->SetMargin(40,40,40,40);
-
-$graph->title->Set("Scatter plot with Image Map");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Client side image map targets
-$targ=array("pie_csimex1.php#1","pie_csimex1.php#2","pie_csimex1.php#3",
-"pie_csimex1.php#4","pie_csimex1.php#5","pie_csimex1.php#6",
-"pie_csimex1.php#7","pie_csimex1.php#8","pie_csimex1.php#9" );
-
-// Strings to put as "alts" (and "title" value)
-$alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d","val=%d","val=%d","val=%d");
-
-// Create a new scatter plot
-$sp1 = new ScatterPlot($datay,$datax);
-
-// Use diamonds as markerss
-$sp1->mark->SetType(MARK_DIAMOND);
-$sp1->mark->SetWidth(10);
-
-// Set the scatter plot image map targets
-$sp1->SetCSIMTargets($targ,$alts);
-
-// Add the plot
-$graph->Add($sp1);
-
-// Send back the HTML page which will call this script again
-// to retrieve the image.
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/scatterex1.php b/#jpgraph/src/Examples/scatterex1.php
deleted file mode 100644
index 83d830b8..00000000
--- a/#jpgraph/src/Examples/scatterex1.php
+++ /dev/null
@@ -1,22 +0,0 @@
-SetScale("linlin");
-
-$graph->img->SetMargin(40,40,40,40);
-$graph->SetShadow();
-
-$graph->title->Set("A simple scatter plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$sp1 = new ScatterPlot($datay,$datax);
-
-$graph->Add($sp1);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/scatterex2.php b/#jpgraph/src/Examples/scatterex2.php
deleted file mode 100644
index ff2b847d..00000000
--- a/#jpgraph/src/Examples/scatterex2.php
+++ /dev/null
@@ -1,25 +0,0 @@
-SetScale("linlin");
-
-$graph->img->SetMargin(40,40,40,40);
-$graph->SetShadow();
-
-$graph->title->Set("A simple scatter plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-$sp1->mark->SetFillColor("red");
-$sp1->mark->SetWidth(8);
-
-$graph->Add($sp1);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/scatterlinkex1.php b/#jpgraph/src/Examples/scatterlinkex1.php
deleted file mode 100644
index 2f2d1bdd..00000000
--- a/#jpgraph/src/Examples/scatterlinkex1.php
+++ /dev/null
@@ -1,26 +0,0 @@
-img->SetMargin(40,40,40,40);
-$graph->img->SetAntiAliasing();
-$graph->SetScale("linlin");
-$graph->SetShadow();
-$graph->title->Set("Linked Scatter plot ex1");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->SetLinkPoints(true,"red",2);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-$sp1->mark->SetFillColor("navy");
-$sp1->mark->SetWidth(3);
-
-$graph->Add($sp1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/scatterlinkex2.php b/#jpgraph/src/Examples/scatterlinkex2.php
deleted file mode 100644
index f45f1ec3..00000000
--- a/#jpgraph/src/Examples/scatterlinkex2.php
+++ /dev/null
@@ -1,43 +0,0 @@
-SetScale("linlin");
-
-$graph->img->SetMargin(40,40,40,40);
-
-$graph->SetShadow();
-$graph->title->Set("Linked scatter plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// 10% top and bottom grace
-$graph->yscale->SetGrace(5,5);
-$graph->xscale->SetGrace(1,1);
-
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-$sp1->mark->SetFillColor("red");
-$sp1->SetColor("blue");
-
-//$sp1->SetWeight(3);
-$sp1->mark->SetWidth(4);
-$sp1->SetLinkPoints();
-
-$graph->Add($sp1);
-
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/scatterlinkex3.php b/#jpgraph/src/Examples/scatterlinkex3.php
deleted file mode 100644
index aef51508..00000000
--- a/#jpgraph/src/Examples/scatterlinkex3.php
+++ /dev/null
@@ -1,45 +0,0 @@
-SetScale('linlin');
-$graph->SetShadow();
-$graph->SetAxisStyle(AXSTYLE_BOXOUT);
-
-$graph->img->SetMargin(50,50,60,40);
-
-$graph->title->Set('Linked scatter plot');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->subtitle->Set('(BOXOUT Axis style)');
-$graph->subtitle->SetFont(FF_FONT1,FS_NORMAL);
-
-
-// 10% top and bottom grace
-$graph->yscale->SetGrace(5,5);
-$graph->xscale->SetGrace(1,1);
-
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-$sp1->mark->SetFillColor('red');
-$sp1->SetColor('blue');
-
-$sp1->mark->SetWidth(4);
-$sp1->link->Show();
-$sp1->link->SetStyle('dotted');
-
-$graph->Add($sp1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/scatterlinkex4.php b/#jpgraph/src/Examples/scatterlinkex4.php
deleted file mode 100644
index 63659e0e..00000000
--- a/#jpgraph/src/Examples/scatterlinkex4.php
+++ /dev/null
@@ -1,45 +0,0 @@
-SetScale('linlin');
-$graph->SetShadow();
-$graph->SetAxisStyle(AXSTYLE_BOXIN);
-
-$graph->img->SetMargin(50,50,60,40);
-
-$graph->title->Set('Linked scatter plot');
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-$graph->subtitle->Set('(BOXIN Axis style)');
-$graph->subtitle->SetFont(FF_FONT1,FS_NORMAL);
-
-// 10% top and bottom grace
-$graph->yscale->SetGrace(5,5);
-$graph->xscale->SetGrace(1,1);
-
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-$sp1->mark->SetFillColor('red');
-$sp1->SetColor('blue');
-
-$sp1->mark->SetWidth(4);
-$sp1->link->Show();
-$sp1->link->SetWeight(2);
-$sp1->link->SetColor('red@0.7');
-
-
-$graph->Add($sp1);
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/scatterrotex1.php b/#jpgraph/src/Examples/scatterrotex1.php
deleted file mode 100644
index 6d67e5b1..00000000
--- a/#jpgraph/src/Examples/scatterrotex1.php
+++ /dev/null
@@ -1,35 +0,0 @@
-SetScale("linlin");
-
-$graph->Set90AndMargin(40,40,40,40);
-$graph->SetShadow();
-
-$graph->title->Set("A 90 degrees rotated scatter plot");
-$graph->title->SetFont(FF_FONT1,FS_BOLD);
-
-// Adjust the label align for X-axis so they look good rotated
-$graph->xaxis->SetLabelAlign('right','center','right');
-
-// Adjust the label align for Y-axis so they look good rotated
-$graph->yaxis->SetLabelAlign('center','bottom');
-
-$graph->xaxis->SetTitle('X-Axis title','low');
-$graph->xaxis->title->SetAngle(90);
-$graph->xaxis->title->SetMargin(15);
-
-$sp1 = new ScatterPlot($datay,$datax);
-$sp1->mark->SetType(MARK_FILLEDCIRCLE);
-$sp1->mark->SetFillColor("red");
-$sp1->mark->SetWidth(5);
-
-$graph->Add($sp1);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/show-example.php b/#jpgraph/src/Examples/show-example.php
deleted file mode 100644
index b95ac274..00000000
--- a/#jpgraph/src/Examples/show-example.php
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
- Test suite for JpGraph -
-
-
-
-
diff --git a/#jpgraph/src/Examples/show-image.php b/#jpgraph/src/Examples/show-image.php
deleted file mode 100644
index 85a987cd..00000000
--- a/#jpgraph/src/Examples/show-image.php
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
- Image
-
-
-
-
-
diff --git a/#jpgraph/src/Examples/show-source.php b/#jpgraph/src/Examples/show-source.php
deleted file mode 100644
index 248f2dee..00000000
--- a/#jpgraph/src/Examples/show-source.php
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/#jpgraph/src/Examples/smallstaticbandsex1.php b/#jpgraph/src/Examples/smallstaticbandsex1.php
deleted file mode 100644
index c78fc8bc..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex1.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_RDIAG,15,35,'khaki4');
-$band->ShowFrame(false);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_RDIAG');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex10.php b/#jpgraph/src/Examples/smallstaticbandsex10.php
deleted file mode 100644
index 88a091ca..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex10.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_DIAGCROSS,15,35,'khaki4');
-$band->ShowFrame(false);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_DIAGCROSS');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex11.php b/#jpgraph/src/Examples/smallstaticbandsex11.php
deleted file mode 100644
index 88a091ca..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex11.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_DIAGCROSS,15,35,'khaki4');
-$band->ShowFrame(false);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_DIAGCROSS');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex2.php b/#jpgraph/src/Examples/smallstaticbandsex2.php
deleted file mode 100644
index d9add7af..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex2.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_LDIAG,15,35,'khaki4');
-$band->ShowFrame(false);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_LDIAG');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex3.php b/#jpgraph/src/Examples/smallstaticbandsex3.php
deleted file mode 100644
index aa2a94d7..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex3.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_SOLID,15,35,'khaki4');
-$band->ShowFrame(false);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_SOLID');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex4.php b/#jpgraph/src/Examples/smallstaticbandsex4.php
deleted file mode 100644
index e4bd999c..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex4.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_3DPLANE,15,35,'khaki4');
-$band->SetDensity(80);
-$band->ShowFrame(true);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_3DPLANE, Density=60');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex5.php b/#jpgraph/src/Examples/smallstaticbandsex5.php
deleted file mode 100644
index d7f9ebb2..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex5.php
+++ /dev/null
@@ -1,42 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_HVCROSS,15,35,'khaki4');
-$band->ShowFrame(true);
-$band->SetOrder(DEPTH_FRONT);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_HVCROSS, In front');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex6.php b/#jpgraph/src/Examples/smallstaticbandsex6.php
deleted file mode 100644
index 506e1a80..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex6.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_VLINE,15,35,'khaki4');
-$band->ShowFrame(false);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_VLINE');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex7.php b/#jpgraph/src/Examples/smallstaticbandsex7.php
deleted file mode 100644
index e07dc6a9..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex7.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_HLINE,15,35,'khaki4');
-$band->ShowFrame(false);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_HLINE');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex8.php b/#jpgraph/src/Examples/smallstaticbandsex8.php
deleted file mode 100644
index 6fbe40fb..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex8.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_3DPLANE,15,35,'khaki4');
-$band->ShowFrame(false);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_3DPLANE');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/smallstaticbandsex9.php b/#jpgraph/src/Examples/smallstaticbandsex9.php
deleted file mode 100644
index b6126d80..00000000
--- a/#jpgraph/src/Examples/smallstaticbandsex9.php
+++ /dev/null
@@ -1,41 +0,0 @@
-SetScale("textlin");
-$graph->SetMargin(25,10,20,20);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("lightblue");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-$graph->ygrid->Show(false);
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$band = new PlotBand(HORIZONTAL,BAND_HVCROSS,15,35,'khaki4');
-$band->ShowFrame(false);
-$graph->Add($band);
-
-// Set title
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,10);
-$graph->title->SetColor('darkred');
-$graph->title->Set('BAND_HVCROSS');
-
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/softy_example.php b/#jpgraph/src/Examples/softy_example.php
deleted file mode 100644
index 4d21fc98..00000000
--- a/#jpgraph/src/Examples/softy_example.php
+++ /dev/null
@@ -1,58 +0,0 @@
- array (0 => 79, 1 => -25, 2 => -7, 3 => 85, 4 => -26, 5 => -32, ),
- 1 => array (0 => 76, 1 => 51, 2 => 86, 3 => 12, 4 => -7, 5 => 94, ),
- 2 => array (0 => 49, 1 => 38, 2 => 7, 3 => -40, 4 => 9, 5 => -7, ),
- 3 => array ( 0 => 69, 1 => 96, 2 => 49, 3 => 7, 4 => 92, 5 => -38, ),
- 4 => array ( 0 => 68, 1 => 16, 2 => 82, 3 => -49, 4 => 50, 5 => 7, ),
- 5 => array ( 0 => -37, 1 => 28, 2 => 32, 3 => 6, 4 => 13, 5 => 57, ),
- 6 => array ( 0 => 24, 1 => -11, 2 => 7, 3 => 10, 4 => 51, 5 => 51, ),
- 7 => array ( 0 => 3, 1 => -1, 2 => -12, 3 => 61, 4 => 10, 5 => 47, ),
- 8 => array ( 0 => -47, 1 => -21, 2 => 43, 3 => 53, 4 => 36, 5 => 34, ),
-);
-
-
-// Create the graph. These two calls are always required
-$graph = new Graph(400,300);
-
-$graph->SetScale("textlin");
-if ($theme) {
- $graph->SetTheme(new $theme());
-}
-$theme_class = new SoftyTheme;
-$graph->SetTheme($theme_class);
-
-$plot = array();
-// Create the bar plots
-for ($i = 0; $i < 4; $i++) {
- $plot[$i] = new BarPlot($data[$i]);
- $plot[$i]->SetLegend('plot'.($i+1));
-}
-//$acc1 = new AccBarPlot(array($plot[0], $plot[1]));
-//$acc1->value->Show();
-$gbplot = new GroupBarPlot(array($plot[2], $plot[1] ));
-
-for ($i = 4; $i < 8; $i++) {
- $plot[$i] = new LinePlot($data[$i]);
- $plot[$i]->SetLegend('plot'.$i);
- $plot[$i]->value->Show();
-}
-
-$graph->Add($gbplot);
-$graph->Add($plot[4]);
-
-$title = "SoftyTheme Example";
-$title = mb_convert_encoding($title,'UTF-8');
-$graph->title->Set($title);
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-// Display the graph
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/splineex1.php b/#jpgraph/src/Examples/splineex1.php
deleted file mode 100644
index 61f60323..00000000
--- a/#jpgraph/src/Examples/splineex1.php
+++ /dev/null
@@ -1,56 +0,0 @@
-Get(50);
-
-// Create the graph
-$g = new Graph(300,200);
-$g->SetMargin(30,20,40,30);
-$g->title->Set("Natural cubic splines");
-$g->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-$g->subtitle->Set('(Control points shown in red)');
-$g->subtitle->SetColor('darkred');
-$g->SetMarginColor('lightblue');
-
-//$g->img->SetAntiAliasing();
-
-// We need a linlin scale since we provide both
-// x and y coordinates for the data points.
-$g->SetScale('linlin');
-
-// We want 1 decimal for the X-label
-$g->xaxis->SetLabelFormat('%1.1f');
-
-// We use a scatterplot to illustrate the original
-// contro points.
-$splot = new ScatterPlot($ydata,$xdata);
-
-//
-$splot->mark->SetFillColor('red@0.3');
-$splot->mark->SetColor('red@0.5');
-
-// And a line plot to stroke the smooth curve we got
-// from the original control points
-$lplot = new LinePlot($newy,$newx);
-$lplot->SetColor('navy');
-
-// Add the plots to the graph and stroke
-$g->Add($lplot);
-$g->Add($splot);
-$g->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/staticbandbarex1.php b/#jpgraph/src/Examples/staticbandbarex1.php
deleted file mode 100644
index 5d59b26a..00000000
--- a/#jpgraph/src/Examples/staticbandbarex1.php
+++ /dev/null
@@ -1,52 +0,0 @@
-img->SetMargin(60,30,50,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,15);
-$graph->title->Set("Cash flow ");
-$graph->subtitle->Set("(Department X)");
-
-// Show both X and Y grid
-$graph->xgrid->Show(true,false);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10,10);
-
-// Turn the tick mark out from the plot area
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-
-// Show the actual value for each bar on top/bottom
-$bplot->value->Show(true);
-$bplot->value->SetFormat("%02d kr");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$graph->Add(new PlotBand(HORIZONTAL,BAND_HLINE,0,10));
-
-//$graph->title->Set("Test of bar gradient fill");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-$graph->xaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/staticbandbarex2.php b/#jpgraph/src/Examples/staticbandbarex2.php
deleted file mode 100644
index 24d3bbcb..00000000
--- a/#jpgraph/src/Examples/staticbandbarex2.php
+++ /dev/null
@@ -1,52 +0,0 @@
-img->SetMargin(60,30,50,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,15);
-$graph->title->Set("Cash flow ");
-$graph->subtitle->Set("(Department X)");
-
-// Show both X and Y grid
-$graph->xgrid->Show(true,false);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10,10);
-
-// Turn the tick mark out from the plot area
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-
-// Show the actual value for each bar on top/bottom
-$bplot->value->Show(true);
-$bplot->value->SetFormat("%02d kr");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add band
-$graph->Add(new PlotBand(HORIZONTAL,BAND_RDIAG,0,"max","red",2));
-
-//$graph->title->Set("Test of bar gradient fill");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-$graph->xaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/staticbandbarex3.php b/#jpgraph/src/Examples/staticbandbarex3.php
deleted file mode 100644
index fa38cca1..00000000
--- a/#jpgraph/src/Examples/staticbandbarex3.php
+++ /dev/null
@@ -1,58 +0,0 @@
-img->SetMargin(60,30,50,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,15);
-$graph->title->Set("Cash flow ");
-$graph->subtitle->Set("(Department X)");
-
-// Show both X and Y grid
-$graph->xgrid->Show(true,false);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10,10);
-
-// Turn the tick mark out from the plot area
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-
-// Show the actual value for each bar on top/bottom
-$bplot->value->Show(true);
-$bplot->value->SetFormat("%02d kr");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add upper and lower band and use no frames
-$uband=new PlotBand(HORIZONTAL,BAND_RDIAG,0,"max","green");
-$uband->ShowFrame(false);
-$lband=new PlotBand(HORIZONTAL,BAND_LDIAG,"min",0,"red");
-$lband->ShowFrame(false);
-
-$graph->Add($uband);
-$graph->Add($lband);
-
-//$graph->title->Set("Test of bar gradient fill");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-$graph->xaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/staticbandbarex4.php b/#jpgraph/src/Examples/staticbandbarex4.php
deleted file mode 100644
index 57ca6dbb..00000000
--- a/#jpgraph/src/Examples/staticbandbarex4.php
+++ /dev/null
@@ -1,60 +0,0 @@
-img->SetMargin(60,30,50,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,15);
-$graph->title->Set("Cash flow ");
-$graph->subtitle->Set("(Department X)");
-
-// Show both X and Y grid
-$graph->xgrid->Show(true,false);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10,10);
-
-// Turn the tick mark out from the plot area
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-
-// Show the actual value for each bar on top/bottom
-$bplot->value->Show(true);
-$bplot->value->SetFormat("%02d kr");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add upper and lower band and use no frames
-$uband=new PlotBand(HORIZONTAL,BAND_RDIAG,0,"max","green");
-$uband->ShowFrame(false);
-$uband->SetDensity(50); // 50% line density
-$lband=new PlotBand(HORIZONTAL,BAND_LDIAG,"min",0,"red");
-$lband->ShowFrame(false);
-$lband->SetDensity(20); // 20% line density
-
-$graph->Add($uband);
-$graph->Add($lband);
-
-//$graph->title->Set("Test of bar gradient fill");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-$graph->xaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/staticbandbarex5.php b/#jpgraph/src/Examples/staticbandbarex5.php
deleted file mode 100644
index 8d80855f..00000000
--- a/#jpgraph/src/Examples/staticbandbarex5.php
+++ /dev/null
@@ -1,63 +0,0 @@
-img->SetMargin(60,30,50,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,15);
-$graph->title->Set("Cash flow ");
-$graph->subtitle->Set("(Department X)");
-
-// Show both X and Y grid
-$graph->xgrid->Show(true,false);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10,10);
-
-// Turn the tick mark out from the plot area
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-
-// Show the actual value for each bar on top/bottom
-$bplot->value->Show(true);
-$bplot->value->SetFormat("%02d kr");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add upper and lower band and use no frames
-$band[0]=new PlotBand(HORIZONTAL,BAND_RDIAG,10,20,"green");
-$band[0]->ShowFrame(false);
-$band[0]->SetDensity(30);
-$band[1]=new PlotBand(HORIZONTAL,BAND_LDIAG,-20,-10,"red");
-$band[1]->ShowFrame(false);
-$band[1]->SetDensity(40);
-$band[2]=new PlotBand(HORIZONTAL,BAND_LDIAG,"min",-20,"red");
-$band[2]->ShowFrame(false);
-$band[2]->SetDensity(80);
-
-// We can also add band in an array
-$graph->Add($band);
-
-//$graph->title->Set("Test of bar gradient fill");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-$graph->xaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/staticbandbarex6.php b/#jpgraph/src/Examples/staticbandbarex6.php
deleted file mode 100644
index df352ea9..00000000
--- a/#jpgraph/src/Examples/staticbandbarex6.php
+++ /dev/null
@@ -1,74 +0,0 @@
-img->SetMargin(60,30,50,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,15);
-$graph->title->Set("Cash flow ");
-$graph->subtitle->Set("Shows some possible patterns for bands");
-
-// Show both X and Y grid
-$graph->xgrid->Show(true,false);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10,10);
-
-// Turn the tick mark out from the plot area
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-$bplot->SetShadow();
-
-// Show the actual value for each bar on top/bottom
-$bplot->value->Show(true);
-$bplot->value->SetFormat("%02d kr");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add upper and lower band and use no frames
-$band[0]=new PlotBand(HORIZONTAL,BAND_RDIAG,10,20,"green");
-$band[0]->ShowFrame(false);
-$band[1]=new PlotBand(HORIZONTAL,BAND_LDIAG,-20,-10,"red");
-$band[1]->ShowFrame(false);
-$band[1]->SetDensity(20);
-$band[2]=new PlotBand(HORIZONTAL,BAND_DIAGCROSS,"min",-20,"red");
-$band[2]->ShowFrame(false);
-$band[2]->SetDensity(40);
-$band[3]=new PlotBand(VERTICAL,BAND_HLINE,0,1,"darkgray");
-$band[3]->ShowFrame(false);
-$band[3]->SetOrder(DEPTH_FRONT);
-$band[4]=new PlotBand(VERTICAL,BAND_HVCROSS,5,"max","darkgray");
-$band[4]->ShowFrame(false);
-$band[4]->SetOrder(DEPTH_FRONT);
-$band[5]=new PlotBand(HORIZONTAL,BAND_SOLID,20,"max","lightgreen");
-$band[6]=new PlotBand(HORIZONTAL,BAND_3DPLANE,-10,0,"blue");
-$band[6]->SetDensity(70);
-$graph->Add($band);
-
-$graph->AddLine(new PlotLine(HORIZONTAL,0,"black",2));
-
-//$graph->title->Set("Test of bar gradient fill");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-$graph->xaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-
-$graph->Stroke();
-?>
-
diff --git a/#jpgraph/src/Examples/staticbandbarex7.php b/#jpgraph/src/Examples/staticbandbarex7.php
deleted file mode 100644
index 399a172b..00000000
--- a/#jpgraph/src/Examples/staticbandbarex7.php
+++ /dev/null
@@ -1,62 +0,0 @@
-img->SetMargin(60,30,50,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,15);
-$graph->title->Set("Cash flow ");
-$graph->subtitle->Set("Use of static line, 3D and solid band");
-
-// Turn off Y-grid (it's on by default)
-$graph->ygrid->Show(false);
-
-// Add 10% grace ("space") at top of Y-scale.
-$graph->yscale->SetGrace(10);
-$graph->yscale->SetAutoMin(-20);
-
-// Turn the tick mark out from the plot area
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-$bplot->SetShadow("darkblue");
-
-// Show the actual value for each bar on top/bottom
-$bplot->value->Show(true);
-$bplot->value->SetFormat("%02d kr");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add upper and lower band and use no frames
-$band[0]=new PlotBand(HORIZONTAL,BAND_3DPLANE,"min",0,"blue");
-$band[0]->ShowFrame(false);
-$band[0]->SetDensity(20);
-$band[1]=new PlotBand(HORIZONTAL,BAND_SOLID,0,"max","steelblue");
-$band[1]->ShowFrame(false);
-$graph->Add($band);
-
-$graph->Add(new PlotLine(HORIZONTAL,0,"black",2));
-
-//$graph->title->Set("Test of bar gradient fill");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-$graph->xaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/staticlinebarex1.php b/#jpgraph/src/Examples/staticlinebarex1.php
deleted file mode 100644
index 9c63442b..00000000
--- a/#jpgraph/src/Examples/staticlinebarex1.php
+++ /dev/null
@@ -1,55 +0,0 @@
-img->SetMargin(60,30,50,40);
-$graph->SetScale("textlin");
-$graph->SetShadow();
-
-$graph->title->SetFont(FF_ARIAL,FS_BOLD,15);
-$graph->title->Set("Cash flow ");
-$graph->subtitle->Set("(Department X)");
-
-// Show both X and Y grid
-$graph->xgrid->Show(true,false);
-
-// Add 10% grace ("space") at top and botton of Y-scale.
-$graph->yscale->SetGrace(10,10);
-
-// Turn the tick mark out from the plot area
-$graph->xaxis->SetTickSide(SIDE_DOWN);
-$graph->yaxis->SetTickSide(SIDE_LEFT);
-
-// Create a bar pot
-$bplot = new BarPlot($datay);
-$bplot->SetFillColor("orange");
-$bplot->SetShadow();
-
-// Show the actual value for each bar on top/bottom
-$bplot->value->Show();
-$bplot->value->SetFormat("%02d kr");
-
-// Position the X-axis at the bottom of the plotare
-$graph->xaxis->SetPos("min");
-
-// .. and add the plot to the graph
-$graph->Add($bplot);
-
-// Add mark graph with static lines
-$graph->AddLine(new PlotLine(HORIZONTAL,0,"black",2));
-$graph->AddLine(new PlotLine(VERTICAL,3,"black",2));
-
-//$graph->title->Set("Test of bar gradient fill");
-$graph->xaxis->title->Set("X-title");
-$graph->yaxis->title->Set("Y-title");
-
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-$graph->xaxis->title->SetFont(FF_ARIAL,FS_BOLD,11);
-
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/stockex1.php b/#jpgraph/src/Examples/stockex1.php
deleted file mode 100644
index d77145c7..00000000
--- a/#jpgraph/src/Examples/stockex1.php
+++ /dev/null
@@ -1,33 +0,0 @@
-SetScale("textlin");
-$graph->SetMarginColor('lightblue');
-$graph->title->Set('Stockchart example');
-
-// Create a new stock plot
-$p1 = new StockPlot($datay);
-
-// Width of the bars (in pixels)
-$p1->SetWidth(9);
-
-// Uncomment the following line to hide the horizontal end lines
-//$p1->HideEndLines();
-
-// Add the plot to the graph and send it back to the browser
-$graph->Add($p1);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/stockex2.php b/#jpgraph/src/Examples/stockex2.php
deleted file mode 100644
index e038cca0..00000000
--- a/#jpgraph/src/Examples/stockex2.php
+++ /dev/null
@@ -1,39 +0,0 @@
-SetScale("textlin");
-$graph->SetMarginColor('white');
-$graph->SetFrame(false);
-$graph->ygrid->SetFill(true,'#EFEFEF@0.5','#BBCCFF@0.5');
-$graph->SetBox();
-
-$graph->tabtitle->Set(' Week 34 ');
-$graph->tabtitle->SetFont(FF_ARIAL,FS_NORMAL,12);
-
-// Get week days in curent locale
-$days = $gDateLocale->GetShortDay();
-array_shift($days); // Start on monday
-$graph->xaxis->SetTickLabels($days);
-
-// Create stock plot
-$p1 = new StockPlot($datay);
-
-// Indent plot so first and last bar isn't on the edges
-$p1->SetCenter();
-
-// Add and stroke
-$graph->Add($p1);
-$graph->Stroke();
-?>
diff --git a/#jpgraph/src/Examples/stship.jpg b/#jpgraph/src/Examples/stship.jpg
deleted file mode 100644
index 7f3bae62..00000000
Binary files a/#jpgraph/src/Examples/stship.jpg and /dev/null differ
diff --git a/#jpgraph/src/Examples/sunflower.gif b/#jpgraph/src/Examples/sunflower.gif
deleted file mode 100644
index b83709f8..00000000
Binary files a/#jpgraph/src/Examples/sunflower.gif and /dev/null differ
diff --git a/#jpgraph/src/Examples/sunspotsex1.php b/#jpgraph/src/Examples/sunspotsex1.php
deleted file mode 100644
index d5edb83e..00000000
--- a/#jpgraph/src/Examples/sunspotsex1.php
+++ /dev/null
@@ -1,51 +0,0 @@
- $datarow ) {
- $split = preg_split('/[\s]+/',$datarow);
- $aYears[] = substr(trim($split[0]),0,4);
- $aSunspots[] = trim($split[1]);
- }
-}
-
-$year = array();
-$ydata = array();
-readsunspotdata('yearssn.txt',$year,$ydata);
-
- // Width and height of the graph
-$width = 600; $height = 200;
-
-// Create a graph instance
-$graph = new Graph($width,$height);
-
-// Specify what scale we want to use,
-// int = integer scale for the X-axis
-// int = integer scale for the Y-axis
-$graph->SetScale('intint');
-
-// Setup a title for the graph
-$graph->title->Set('Sunspot example');
-
-// Setup titles and X-axis labels
-$graph->xaxis->title->Set('(year from 1701)');
-
-// Setup Y-axis title
-$graph->yaxis->title->Set('(# sunspots)');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/sunspotsex2.php b/#jpgraph/src/Examples/sunspotsex2.php
deleted file mode 100644
index 817db158..00000000
--- a/#jpgraph/src/Examples/sunspotsex2.php
+++ /dev/null
@@ -1,52 +0,0 @@
- $datarow ) {
- $split = preg_split('/[\s]+/',$datarow);
- $aYears[] = substr(trim($split[0]),0,4);
- $aSunspots[] = trim($split[1]);
- }
-}
-
-$year = array();
-$ydata = array();
-readsunspotdata('yearssn.txt',$year,$ydata);
-
- // Width and height of the graph
-$width = 600; $height = 200;
-
-// Create a graph instance
-$graph = new Graph($width,$height);
-
-// Specify what scale we want to use,
-// int = integer scale for the X-axis
-// int = integer scale for the Y-axis
-$graph->SetScale('intint');
-
-// Setup a title for the graph
-$graph->title->Set('Sunspot example');
-
-// Setup titles and X-axis labels
-$graph->xaxis->title->Set('(year from 1701)');
-
-// Setup Y-axis title
-$graph->yaxis->title->Set('(# sunspots)');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetFillColor('orange@0.5');
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/sunspotsex3.php b/#jpgraph/src/Examples/sunspotsex3.php
deleted file mode 100644
index cf54cb44..00000000
--- a/#jpgraph/src/Examples/sunspotsex3.php
+++ /dev/null
@@ -1,53 +0,0 @@
- $datarow ) {
- $split = preg_split('/[\s]+/',$datarow);
- $aYears[] = substr(trim($split[0]),0,4);
- $aSunspots[] = trim($split[1]);
- }
-}
-
-$year = array();
-$ydata = array();
-readsunspotdata('yearssn.txt',$year,$ydata);
-
- // Width and height of the graph
-$width = 600; $height = 200;
-
-// Create a graph instance
-$graph = new Graph($width,$height);
-
-// Specify what scale we want to use,
-// int = integer scale for the X-axis
-// int = integer scale for the Y-axis
-$graph->SetScale('intint');
-
-// Setup a title for the graph
-$graph->title->Set('Sunspot example');
-
-// Setup titles and X-axis labels
-$graph->xaxis->title->Set('(year from 1701)');
-$graph->xaxis->SetTickLabels($year);
-
-// Setup Y-axis title
-$graph->yaxis->title->Set('(# sunspots)');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetFillColor('orange@0.5');
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/sunspotsex4.php b/#jpgraph/src/Examples/sunspotsex4.php
deleted file mode 100644
index e0877e03..00000000
--- a/#jpgraph/src/Examples/sunspotsex4.php
+++ /dev/null
@@ -1,53 +0,0 @@
- $datarow ) {
- $split = preg_split('/[\s]+/',$datarow);
- $aYears[] = substr(trim($split[0]),0,4);
- $aSunspots[] = trim($split[1]);
- }
-}
-
-$year = array();
-$ydata = array();
-readsunspotdata('yearssn.txt',$year,$ydata);
-
- // Width and height of the graph
-$width = 600; $height = 200;
-
-// Create a graph instance
-$graph = new Graph($width,$height);
-
-// Specify what scale we want to use,
-// int = integer scale for the X-axis
-// int = integer scale for the Y-axis
-$graph->SetScale('intint',0,0,0,max($year)-min($year)+1);
-
-// Setup a title for the graph
-$graph->title->Set('Sunspot example');
-
-// Setup titles and X-axis labels
-$graph->xaxis->title->Set('(year from 1701)');
-$graph->xaxis->SetTickLabels($year);
-
-// Setup Y-axis title
-$graph->yaxis->title->Set('(# sunspots)');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetFillColor('orange@0.5');
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/sunspotsex5.php b/#jpgraph/src/Examples/sunspotsex5.php
deleted file mode 100644
index 3d7322a2..00000000
--- a/#jpgraph/src/Examples/sunspotsex5.php
+++ /dev/null
@@ -1,57 +0,0 @@
- $datarow ) {
- $split = preg_split('/[\s]+/',$datarow);
- $aYears[] = substr(trim($split[0]),0,4);
- $aSunspots[] = trim($split[1]);
- }
-}
-
-$year = array();
-$ydata = array();
-readsunspotdata('yearssn.txt',$year,$ydata);
-
-function year_callback($aLabel) {
- return 1700+(int)$aLabel;
-}
-
- // Width and height of the graph
-$width = 600; $height = 200;
-
-// Create a graph instance
-$graph = new Graph($width,$height);
-
-// Specify what scale we want to use,
-// int = integer scale for the X-axis
-// int = integer scale for the Y-axis
-$graph->SetScale('intint');
-
-// Setup a title for the graph
-$graph->title->Set('Sunspot example');
-
-// Setup titles and X-axis labels
-$graph->xaxis->title->Set('(year from 1701)');
-$graph->xaxis->SetLabelFormatCallback('year_callback');
-
-// Setup Y-axis title
-$graph->yaxis->title->Set('(# sunspots)');
-
-// Create the linear plot
-$lineplot=new LinePlot($ydata);
-$lineplot->SetFillColor('orange@0.5');
-
-// Add the plot to the graph
-$graph->Add($lineplot);
-
-// Display the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/sunspotsex6.php b/#jpgraph/src/Examples/sunspotsex6.php
deleted file mode 100644
index 2efe6448..00000000
--- a/#jpgraph/src/Examples/sunspotsex6.php
+++ /dev/null
@@ -1,52 +0,0 @@
- $datarow ) {
- $split = preg_split('/[\s]+/',$datarow);
- $aYears[] = substr(trim($split[0]),0,4);
- $aSunspots[] = trim($split[1]);
- }
-}
-
-$year = array();
-$ydata = array();
-readsunspotdata('yearssn.txt',$year,$ydata);
-
- // Width and height of the graph
-$width = 600; $height = 200;
-
-// Create a graph instance
-$graph = new Graph($width,$height);
-
-// Specify what scale we want to use,
-// int = integer scale for the X-axis
-// int = integer scale for the Y-axis
-$graph->SetScale('intint');
-
-// Setup a title for the graph
-$graph->title->Set('Sunspot example');
-
-// Setup titles and X-axis labels
-$graph->xaxis->title->Set('(year from 1701)');
-
-// Setup Y-axis title
-$graph->yaxis->title->Set('(# sunspots)');
-
-// Create the bar plot
-$barplot=new BarPlot($ydata);
-
-// Add the plot to the graph
-$graph->Add($barplot);
-
-// Display the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/sunspotsex7.php b/#jpgraph/src/Examples/sunspotsex7.php
deleted file mode 100644
index b104f9fe..00000000
--- a/#jpgraph/src/Examples/sunspotsex7.php
+++ /dev/null
@@ -1,56 +0,0 @@
- $datarow ) {
- $split = preg_split('/[\s]+/',$datarow);
- $aYears[] = substr(trim($split[0]),0,4);
- $aSunspots[] = trim($split[1]);
- }
-}
-
-$year = array();
-$ydata = array();
-readsunspotdata('yearssn.txt',$year,$ydata);
-
-// Just keep the last 20 values in the arrays
-$year = array_slice($year, -20);
-$ydata = array_slice($ydata, -20);
-
- // Width and height of the graph
-$width = 600; $height = 200;
-
-// Create a graph instance
-$graph = new Graph($width,$height);
-
-// Specify what scale we want to use,
-// text = txt scale for the X-axis
-// int = integer scale for the Y-axis
-$graph->SetScale('textint');
-
-// Setup a title for the graph
-$graph->title->Set('Sunspot example');
-
-// Setup titles and X-axis labels
-$graph->xaxis->title->Set('(year)');
-$graph->xaxis->SetTickLabels($year);
-
-// Setup Y-axis title
-$graph->yaxis->title->Set('(# sunspots)');
-
-// Create the bar plot
-$barplot=new BarPlot($ydata);
-
-// Add the plot to the graph
-$graph->Add($barplot);
-
-// Display the graph
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/table_flagex1.php b/#jpgraph/src/Examples/table_flagex1.php
deleted file mode 100644
index 8729561d..00000000
--- a/#jpgraph/src/Examples/table_flagex1.php
+++ /dev/null
@@ -1,70 +0,0 @@
-Set($data);
-$table->SetFont(FF_TIMES,FS_NORMAL,11);
-
-// Adjust the font for row 0 and 6
-$table->SetColFont(0,FF_ARIAL,FS_BOLD,11);
-$table->SetRowFont(6,FF_TIMES,FS_BOLD,12);
-
-// Set the minimum heigth/width
-$table->SetMinRowHeight(2,10);
-$table->SetMinColWidth(70);
-
-// Add some padding (in pixels)
-$table->SetRowPadding(2,0);
-$table->SetRowGrid(6,1,'darkgray',TGRID_DOUBLE2);
-
-// Setup the grid
-$table->SetGrid(0);
-$table->SetRowGrid(6,1,'black',TGRID_DOUBLE2);
-
-// Merge all cells in row 0
-$table->MergeRow(0);
-
-// Set aligns
-$table->SetAlign(3,0,6,6,'right');
-$table->SetRowAlign(1,'center');
-$table->SetRowAlign(2,'center');
-
-// Set background colors
-$table->SetRowFillColor(0,'lightgray@0.5');
-$table->SetColFillColor(0,'lightgray@0.5');
-
-// Add the country flags in row 1
-$n = count($countries);
-for($i=0; $i < $n; ++$i ) {
- $table->SetCellCountryFlag(1,$i+1,$countries[$i],0.5);
- $table->SetCellImageConstrain(1,$i+1,TIMG_HEIGHT,20);
-}
-
-// Add the table to the graph
-$graph->Add($table);
-
-// Send back the table graph to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto1.php b/#jpgraph/src/Examples/table_howto1.php
deleted file mode 100644
index bb50fa03..00000000
--- a/#jpgraph/src/Examples/table_howto1.php
+++ /dev/null
@@ -1,21 +0,0 @@
-Set($data);
-
-// Add the table to the graph
-$graph->Add($table);
-
-// ... and send back the table to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto2.php b/#jpgraph/src/Examples/table_howto2.php
deleted file mode 100644
index 69d25e6b..00000000
--- a/#jpgraph/src/Examples/table_howto2.php
+++ /dev/null
@@ -1,25 +0,0 @@
-Set($data);
-
-// Merge all cellsn in the rectangle with
-// top left corner = (0,2) and bottom right = (1,3)
-$table->MergeCells(0,2,1,3);
-
-// Add the table to the graph
-$graph->Add($table);
-
-// ... and send back the table to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto3.php b/#jpgraph/src/Examples/table_howto3.php
deleted file mode 100644
index 26417b4a..00000000
--- a/#jpgraph/src/Examples/table_howto3.php
+++ /dev/null
@@ -1,24 +0,0 @@
-Set($data);
-
-// Merge all cells in row 0
-$table->MergeRow(0);
-
-// Add table to graph
-$graph->Add($table);
-
-// ... and send back the table to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto4.php b/#jpgraph/src/Examples/table_howto4.php
deleted file mode 100644
index d093fcb3..00000000
--- a/#jpgraph/src/Examples/table_howto4.php
+++ /dev/null
@@ -1,28 +0,0 @@
-Set($data);
-
-// Merge all cells in row 0
-$table->MergeRow(0);
-
-// Set foreground and background color
-$table->SetCellFillColor(0,0,'orange@0.7');
-$table->SetCellColor(0,0,'darkred');
-
-// Add the table to the graph
-$graph->Add($table);
-
-// and send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto5.php b/#jpgraph/src/Examples/table_howto5.php
deleted file mode 100644
index 252318af..00000000
--- a/#jpgraph/src/Examples/table_howto5.php
+++ /dev/null
@@ -1,30 +0,0 @@
-Set($data);
-
-// Merge all cells in row 0
-$table->MergeRow(0);
-
-// Adjust font in cell (0,0)
-$table->SetCellFont(0,0,FF_ARIAL,FS_BOLD,14);
-
-// Set left align for all cells in rectangle (0,0) - (0,3)
-$table->SetAlign(0,0,0,3,'Left');
-
-// Add table to graph
-$graph->Add($table);
-
-// ... send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto6.php b/#jpgraph/src/Examples/table_howto6.php
deleted file mode 100644
index c776494e..00000000
--- a/#jpgraph/src/Examples/table_howto6.php
+++ /dev/null
@@ -1,32 +0,0 @@
-Set($data);
-
-// Merge all cells in row 0
-$table->MergeRow(0);
-
-// Setup font and color
-$table->SetCellFont(0,0,FF_ARIAL,FS_BOLD,14);
-$table->SetRowFillColor(0,'orange@0.5');
-$table->SetRowColor(0,'darkred');
-
-// Setup the minimum width of all columns
-$table->SetMinColWidth(35);
-
-// Add table to the graph
-$graph->Add($table);
-
-// ... send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto7.1.php b/#jpgraph/src/Examples/table_howto7.1.php
deleted file mode 100644
index 4dbe52d7..00000000
--- a/#jpgraph/src/Examples/table_howto7.1.php
+++ /dev/null
@@ -1,34 +0,0 @@
-Set($data);
-
-// Set default font in entire table
-$table->SetFont(FF_ARIAL,FS_NORMAL,11);
-
-// Setup font and color for row = 2
-$table->SetRowFont(2,FF_ARIAL,FS_BOLD,11);
-$table->SetRowFillColor(2,'orange@0.5');
-
-// Setup minimum color width
-$table->SetMinColWidth(35);
-
-// Setup grid on row 2
-$table->SetRowGrid(2,1,'black',TGRID_DOUBLE);
-
-// Add table to the graph
-$graph->Add($table);
-
-// and send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto7.2.php b/#jpgraph/src/Examples/table_howto7.2.php
deleted file mode 100644
index 8a159f8a..00000000
--- a/#jpgraph/src/Examples/table_howto7.2.php
+++ /dev/null
@@ -1,34 +0,0 @@
-Set($data);
-
-// Set default font in entire table
-$table->SetFont(FF_ARIAL,FS_NORMAL,11);
-
-// Setup font and color for row = 2
-$table->SetRowFont(2,FF_ARIAL,FS_BOLD,11);
-$table->SetRowFillColor(2,'orange@0.5');
-
-// Setup minimum color width
-$table->SetMinColWidth(35);
-
-// Setup grid on row 2
-$table->SetRowGrid(2,1,'black',TGRID_DOUBLE2);
-
-// Add table to the graph
-$graph->Add($table);
-
-// and send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto7.php b/#jpgraph/src/Examples/table_howto7.php
deleted file mode 100644
index 8a159f8a..00000000
--- a/#jpgraph/src/Examples/table_howto7.php
+++ /dev/null
@@ -1,34 +0,0 @@
-Set($data);
-
-// Set default font in entire table
-$table->SetFont(FF_ARIAL,FS_NORMAL,11);
-
-// Setup font and color for row = 2
-$table->SetRowFont(2,FF_ARIAL,FS_BOLD,11);
-$table->SetRowFillColor(2,'orange@0.5');
-
-// Setup minimum color width
-$table->SetMinColWidth(35);
-
-// Setup grid on row 2
-$table->SetRowGrid(2,1,'black',TGRID_DOUBLE2);
-
-// Add table to the graph
-$graph->Add($table);
-
-// and send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto8.php b/#jpgraph/src/Examples/table_howto8.php
deleted file mode 100644
index a89785b3..00000000
--- a/#jpgraph/src/Examples/table_howto8.php
+++ /dev/null
@@ -1,43 +0,0 @@
-Set($data);
-
-// Setup overall table font
-$table->SetFont(FF_ARIAL,FS_NORMAL,11);
-
-// Setup font and color for row = 2
-$table->SetRowFont(2,FF_ARIAL,FS_BOLD,11);
-$table->SetRowFillColor(2,'orange@0.5');
-
-// Setup minimum color width
-$table->SetMinColWidth(35);
-
-// Setup overall cell alignment for the table
-$table->SetAlign('right');
-
-// Setup overall table border
-$table->SetBorder(0,'black');
-
-// Setup overall table grid
-$table->setGrid(0,'black');
-
-// Set specific frid for row = 2
-$table->SetRowGrid(2,1,'black',TGRID_DOUBLE2);
-
-// Add the table to the graph
-$graph->Add($table);
-
-// and send it back to the browser
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_howto9.php b/#jpgraph/src/Examples/table_howto9.php
deleted file mode 100644
index cf6f65f4..00000000
--- a/#jpgraph/src/Examples/table_howto9.php
+++ /dev/null
@@ -1,46 +0,0 @@
-Set($data);
-
-// Setup overall table font
-$table->SetFont(FF_ARIAL,FS_NORMAL,11);
-
-// Setup font and color for row = 2
-$table->SetRowFont(2,FF_ARIAL,FS_BOLD,11);
-$table->SetRowFillColor(2,'orange@0.5');
-
-// Setup minimum color width
-$table->SetMinColWidth(40);
-
-// Setup overall cell alignment for the table
-$table->SetAlign('right');
-
-// Setup overall table border
-$table->SetBorder(0,'black');
-
-// Setup overall table grid
-$table->setGrid(0,'black');
-
-// Set specific frid for row = 2
-$table->SetRowGrid(2,1,'black',TGRID_DOUBLE2);
-
-// Setup overall number format in all cells
-$table->SetNumberFormat("%0.1f");
-
-// Add table to the graph
-$graph->Add($table);
-
-// and send it back to the browser
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_mex0.php b/#jpgraph/src/Examples/table_mex0.php
deleted file mode 100644
index 9568874e..00000000
--- a/#jpgraph/src/Examples/table_mex0.php
+++ /dev/null
@@ -1,50 +0,0 @@
-Set($data);
-
-// Setup fonts
-$table->SetFont(FF_TIMES,FS_NORMAL,11);
-$table->SetColFont(0,FF_ARIAL,FS_NORMAL,11);
-$table->SetRowFont(0,FF_ARIAL,FS_NORMAL,11);
-$table->SetRowFont(4,FF_TIMES,FS_BOLD,14);
-
-// Turn off the grid
-$table->SetGrid(0);
-
-// Setup color
-$table->SetRowFillColor(0,'lightgray@0.5');
-$table->SetRowFillColor(4,'lightgray@0.5');
-$table->SetColFillColor(0,'lightgray@0.5');
-$table->SetFillColor(0,0,4,0,'lightgray@0.5');
-
-// Set default minimum column width
-$table->SetMinColWidth(45);
-
-// Set default table alignment
-$table->SetAlign('right');
-
-// Add table to the graph
-$graph->Add($table);
-
-// and send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_mex00.php b/#jpgraph/src/Examples/table_mex00.php
deleted file mode 100644
index ecd7410d..00000000
--- a/#jpgraph/src/Examples/table_mex00.php
+++ /dev/null
@@ -1,33 +0,0 @@
-Set($data);
-$table->SetFont(FF_TIMES,FS_NORMAL,11);
-
-// Set default table alignment
-$table->SetAlign('right');
-
-// Add table to graph
-$graph->Add($table);
-
-// and send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_mex1.php b/#jpgraph/src/Examples/table_mex1.php
deleted file mode 100644
index ce40d0e7..00000000
--- a/#jpgraph/src/Examples/table_mex1.php
+++ /dev/null
@@ -1,56 +0,0 @@
-Set($data);
-$table->SetFont(FF_ARIAL,FS_NORMAL,11);
-
-// Setup default column width
-$table->SetMinColWidth(40);
-
-// Setup defalt table alignment
-$table->SetAlign('right');
-
-// Turn off border
-$table->SetBorder(0);
-
-// Turn off grid
-$table->setGrid(0);
-
-// Setup font for row 4 and 0
-$table->SetRowFont(4,FF_ARIAL,FS_BOLD,11);
-$table->SetRowFont(0,FF_ARIAL,FS_BOLD,11);
-
-// Setup color
-$table->SetRowFillColor(4,'orange@0.5');
-$table->SetFillColor(0,1,0,6,'teal@0.8');
-
-
-// Setup grids
-$table->SetRowGrid(4,1,'black',TGRID_DOUBLE2);
-$table->SetColGrid(1,1,'black',TGRID_SINGLE);
-$table->SetRowGrid(1,1,'black',TGRID_SINGLE);
-
-// Add table to the graph
-$graph->Add($table);
-
-// Send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_mex2.php b/#jpgraph/src/Examples/table_mex2.php
deleted file mode 100644
index a4acc9d8..00000000
--- a/#jpgraph/src/Examples/table_mex2.php
+++ /dev/null
@@ -1,58 +0,0 @@
-Set($data);
-$table->SetFont(FF_ARIAL,FS_NORMAL,11);
-
-// Set default minimum color width
-$table->SetMinColWidth(40);
-
-// Set default table alignment
-$table->SetAlign('right');
-
-// Set table border
-$table->SetBorder(0);
-
-// Turn off grid
-$table->setGrid(0);
-
-// Setup font
-$table->SetRowFont(4,FF_ARIAL,FS_BOLD,11);
-$table->SetRowFont(0,FF_ARIAL,FS_BOLD,11);
-
-// Setup various grid lines
-$table->SetRowGrid(4,2,'black',TGRID_SINGLE);
-$table->SetColGrid(1,3,'black',TGRID_SINGLE);
-$table->SetRowGrid(1,1,'black',TGRID_SINGLE);
-
-// Setup various colors
-$table->SetFillColor(0,1,0,6,'black');
-$table->SetRowColor(0,'white');
-$table->SetRowFillColor(4,'lightyellow');
-$table->SetFillColor(2,0,2,6,'lightgray');
-
-// Add table to the graph
-$graph->Add($table);
-
-
-// Send back to client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_mex3.php b/#jpgraph/src/Examples/table_mex3.php
deleted file mode 100644
index 981181c4..00000000
--- a/#jpgraph/src/Examples/table_mex3.php
+++ /dev/null
@@ -1,59 +0,0 @@
-Set($data);
-$table->SetFont(FF_ARIAL,FS_NORMAL,11);
-
-// Set default minimum color width
-$table->SetMinColWidth(40);
-
-// Set default table alignment
-$table->SetAlign('right');
-
-// Turn off grid
-$table->setGrid(0);
-
-// Set table border
-$table->SetBorder(2);
-
-// Setup font
-$table->SetRowFont(4,FF_ARIAL,FS_BOLD,11);
-$table->SetRowFont(0,FF_ARIAL,FS_BOLD,11);
-$table->SetFont(1,2,1,3,FF_ARIAL,FS_BOLD,11);
-
-// Setup grids
-$table->SetRowGrid(4,2,'black',TGRID_SINGLE);
-$table->SetColGrid(1,1,'black',TGRID_SINGLE);
-$table->SetRowGrid(1,1,'black',TGRID_SINGLE);
-
-// Setup colors
-$table->SetFillColor(0,1,0,6,'black');
-$table->SetRowColor(0,'white');
-$table->SetRowFillColor(4,'lightgray@0.3');
-$table->SetFillColor(2,0,2,6,'lightgray@0.6');
-$table->SetFillColor(1,2,1,3,'lightred');
-
-// Add table to graph
-$graph->Add($table);
-
-// Send back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_vtext.php b/#jpgraph/src/Examples/table_vtext.php
deleted file mode 100644
index 1b2b349a..00000000
--- a/#jpgraph/src/Examples/table_vtext.php
+++ /dev/null
@@ -1,42 +0,0 @@
-Set($data);
-$table->SetAlign('right');
-$table->SetFont(FF_TIMES,FS_NORMAL,12);
-$table->SetCellFont(0,0,FF_ARIAL,FS_BOLD,16);
-
-// Rotate the entire table 90 degrees
-$table->SetTextOrientation(90);
-//$table->SetCellTextOrientation(0,0,0);
-
-// Setup background color for header column
-$table->SetColFillColor(0,'lightgray');
-
-// Set the imnimum row height
-$table->SetMinRowHeight(0,150);
-
-// Add table to graph
-$graph->Add($table);
-
-// and send it back to the client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/table_vtext_ex1.php b/#jpgraph/src/Examples/table_vtext_ex1.php
deleted file mode 100644
index 9581884b..00000000
--- a/#jpgraph/src/Examples/table_vtext_ex1.php
+++ /dev/null
@@ -1,42 +0,0 @@
-Set($data);
-$table->SetFont(FF_TIMES,FS_NORMAL,11);
-
-// Default table alignment
-$table->SetAlign('right');
-
-// Adjust font in (0,0)
-$table->SetCellFont(0,0,FF_TIMES,FS_BOLD,14);
-
-// Rotate all textxs in row 0
-$table->SetRowTextOrientation(0,90);
-
-// Adjust alignment in cell (0,0)
-$table->SetCellAlign(0,0,'center','center');
-
-// Add table to graph
-$graph->Add($table);
-
-// Send back table to client
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/tablebarex1.php b/#jpgraph/src/Examples/tablebarex1.php
deleted file mode 100644
index 79567164..00000000
--- a/#jpgraph/src/Examples/tablebarex1.php
+++ /dev/null
@@ -1,70 +0,0 @@
-img->SetMargin($tablexpos,$rightmargin,30,$height-$tableypos);
-$graph->SetScale("textlin");
-$graph->SetMarginColor('white');
-
-// Setup titles and fonts
-$graph->title->Set('Bar and table');
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,14);
-$graph->yaxis->title->Set("Flow");
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-$graph->yaxis->title->SetMargin(10);
-
-// Create the bars and the accbar plot
-$bplot = new BarPlot($datay[3]);
-$bplot->SetFillColor("orange");
-$bplot2 = new BarPlot($datay[2]);
-$bplot2->SetFillColor("red");
-$bplot3 = new BarPlot($datay[1]);
-$bplot3->SetFillColor("darkgreen");
-$accbplot = new AccBarPlot(array($bplot,$bplot2,$bplot3));
-$accbplot->value->Show();
-$graph->Add($accbplot);
-
-//Setup the table
-$table = new GTextTable();
-$table->Set($datay);
-$table->SetPos($tablexpos,$tableypos+1);
-
-// Basic table formatting
-$table->SetFont(FF_ARIAL,FS_NORMAL,10);
-$table->SetAlign('right');
-$table->SetMinColWidth($cellwidth);
-$table->SetNumberFormat('%0.1f');
-
-// Format table header row
-$table->SetRowFillColor(0,'teal@0.7');
-$table->SetRowFont(0,FF_ARIAL,FS_BOLD,11);
-$table->SetRowAlign(0,'center');
-
-// .. and add it to the graph
-$graph->Add($table);
-
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/tablebarex1_csim.php b/#jpgraph/src/Examples/tablebarex1_csim.php
deleted file mode 100644
index 96061493..00000000
--- a/#jpgraph/src/Examples/tablebarex1_csim.php
+++ /dev/null
@@ -1,72 +0,0 @@
-img->SetMargin($tablexpos,$rightmargin,30,$height-$tableypos);
-$graph->SetScale("textlin");
-$graph->SetMarginColor('white');
-
-// Setup titles and fonts
-$graph->title->Set('Bar and table');
-$graph->title->SetFont(FF_VERDANA,FS_NORMAL,14);
-$graph->yaxis->title->Set("Flow");
-$graph->yaxis->title->SetFont(FF_ARIAL,FS_NORMAL,12);
-$graph->yaxis->title->SetMargin(10);
-
-// Create the bars and the accbar plot
-$bplot = new BarPlot($datay[3]);
-$bplot->SetFillColor("orange");
-$bplot2 = new BarPlot($datay[2]);
-$bplot2->SetFillColor("red");
-$bplot3 = new BarPlot($datay[1]);
-$bplot3->SetFillColor("darkgreen");
-$accbplot = new AccBarPlot(array($bplot,$bplot2,$bplot3));
-$accbplot->value->Show();
-$graph->Add($accbplot);
-
-//Setup the table
-$table = new GTextTable();
-$table->Set($datay);
-$table->SetPos($tablexpos,$tableypos+1);
-
-$table->SetCellCSIMTarget(1,1,'tableex02.php','View details');
-
-// Basic table formatting
-$table->SetFont(FF_ARIAL,FS_NORMAL,10);
-$table->SetAlign('right');
-$table->SetMinColWidth($cellwidth);
-$table->SetNumberFormat('%0.1f');
-
-// Format table header row
-$table->SetRowFillColor(0,'teal@0.7');
-$table->SetRowFont(0,FF_ARIAL,FS_BOLD,11);
-$table->SetRowAlign(0,'center');
-
-// .. and add it to the graph
-$graph->Add($table);
-
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/tableex00.php b/#jpgraph/src/Examples/tableex00.php
deleted file mode 100644
index 0acabaed..00000000
--- a/#jpgraph/src/Examples/tableex00.php
+++ /dev/null
@@ -1,25 +0,0 @@
-Set($data);
-
-//Add table to the graph
-$graph->Add($table);
-
-// Send back table to the client
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/tableex01.php b/#jpgraph/src/Examples/tableex01.php
deleted file mode 100644
index 8efe9f9f..00000000
--- a/#jpgraph/src/Examples/tableex01.php
+++ /dev/null
@@ -1,29 +0,0 @@
-Init();
-$table->Set($data);
-
-$table->SetRowFont(0,FF_FONT1,FS_BOLD);
-$table->SetRowColor(0,'navy');
-$table->SetRowFillColor(0,'lightgray');
-
-$table->SetColFont(0,FF_FONT1,FS_BOLD);
-$table->SetColColor(0,'navy');
-$table->SetColFillColor(0,'lightgray');
-
-$graph->Add($table);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/tableex01_csim.php b/#jpgraph/src/Examples/tableex01_csim.php
deleted file mode 100644
index ff11a70b..00000000
--- a/#jpgraph/src/Examples/tableex01_csim.php
+++ /dev/null
@@ -1,33 +0,0 @@
-Set($data);
-
-$table->SetCellCSIMTarget(1,1,'tableex02.php','View details');
-
-$table->SetRowFont(0,FF_FONT1,FS_BOLD);
-$table->SetRowColor(0,'navy');
-$table->SetRowFillColor(0,'lightgray');
-
-$table->SetColFont(0,FF_FONT1,FS_BOLD);
-$table->SetColColor(0,'navy');
-$table->SetColFillColor(0,'lightgray');
-
-$graph->Add($table);
-
-$graph->StrokeCSIM();
-
-?>
diff --git a/#jpgraph/src/Examples/tableex02.php b/#jpgraph/src/Examples/tableex02.php
deleted file mode 100644
index 193f49f1..00000000
--- a/#jpgraph/src/Examples/tableex02.php
+++ /dev/null
@@ -1,33 +0,0 @@
-Init();
-$table->Set($data);
-
-// Setup row and column headers
-$table->SetRowFont(0,FF_TIMES,FS_BOLD,11);
-$table->SetRowAlign(0,'left','bottom');
-$table->SetRowColor(0,'navy');
-$table->SetRowFillColor(0,'lightgray');
-$table->SetColFont(0,FF_ARIAL,FS_BOLD,11);
-$table->SetColColor(0,'navy');
-$table->SetColFillColor(0,'lightgray');
-
-// Highlight cell 2,3
-$table->SetCellFillColor(2,3,'yellow');
-
-$graph->Add($table);
-$graph->Stroke();
-
-?>
diff --git a/#jpgraph/src/Examples/tableex03.php b/#jpgraph/src/Examples/tableex03.php
deleted file mode 100644
index 5ac72151..00000000
--- a/#jpgraph/src/Examples/tableex03.php
+++ /dev/null
@@ -1,58 +0,0 @@
-Init();
-$table->Set($data);
-$table->SetBorder(2,'black');
-
-// Setup top row with the year title
-$table->MergeCells(0,0,0,6);
-$table->SetRowFont(0,FF_ARIAL,FS_BOLD,16);
-$table->SetRowColor(0,'navy');
-$table->SetRowAlign(0,'center');
-
-// Setup quarter header
-$table->MergeCells(1,1,1,3);
-$table->MergeCells(1,4,1,6);
-$table->SetRowAlign(1,'center');
-$table->SetRowFont(1,FF_ARIAL,FS_BOLD,10);
-$table->SetRowColor(1,'navy');
-$table->SetRowFillColor(1,'lightgray');
-$table->SetRowGrid(2,'',0); // Turn off the gridline just under the top row
-
-// Setup row and column headers
-$table->SetRowFont(2,FF_ARIAL,FS_NORMAL,11);
-$table->SetRowColor(2,'navy');
-$table->SetRowFillColor(2,'lightgray');
-
-$table->SetColFont(0,FF_ARIAL,FS_NORMAL,11);
-$table->SetColColor(0,'navy');
-$table->SetColFillColor(0,'lightgray');
-
-$table->SetCellFillColor(0,0,'lightgreen');
-$table->SetCellFillColor(1,0,'lightgreen');
-$table->SetCellFillColor(2,0,'lightgreen');
-
-// Highlight cell 2,3
-$table->SetCellFillColor(4,3,'yellow');
-
-$graph->Add($table);
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/tableex04.php b/#jpgraph/src/Examples/tableex04.php
deleted file mode 100644
index 21f540d3..00000000
--- a/#jpgraph/src/Examples/tableex04.php
+++ /dev/null
@@ -1,50 +0,0 @@
-Init();
-$table->Set($data);
-$table->SetBorder(2,'black');
-
-// Highlight summation row
-$table->SetRowFillColor($r-1,'yellow');
-$table->SetCellAlign($r-1,0,'right');
-
-// Setup row and column headers
-$table->SetRowFont(0,FF_ARIAL,FS_NORMAL,10);
-$table->SetRowColor(0,'navy');
-$table->SetRowFillColor(0,'lightgray');
-
-$table->SetColFont(0,FF_ARIAL,FS_NORMAL,10);
-$table->SetColColor(0,'navy');
-$table->SetColFillColor(0,'lightgray');
-
-$table->SetRowGrid($r-1,1,'black',TGRID_DOUBLE);
-
-$graph->Add($table);
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/tableex05.php b/#jpgraph/src/Examples/tableex05.php
deleted file mode 100644
index aad9e00d..00000000
--- a/#jpgraph/src/Examples/tableex05.php
+++ /dev/null
@@ -1,53 +0,0 @@
-Init();
-$table->Set($data);
-$table->SetBorder(2,'black');
-
-// Highlight summation row
-$table->SetRowFillColor($r-1,'yellow');
-$table->SetCellAlign($r-1,0,'right');
-
-// Setup row and column headers
-$table->SetRowFont(0,FF_ARIAL,FS_NORMAL,10);
-$table->SetRowColor(0,'navy');
-$table->SetRowFillColor(0,'lightgray');
-
-$table->SetColFont(0,FF_ARIAL,FS_NORMAL,10);
-$table->SetColColor(0,'navy');
-$table->SetColFillColor(0,'lightgray');
-
-$table->SetRowGrid($r-1,1,'black',TGRID_DOUBLE);
-
-$table->SetFont(1,4,2,6,FF_TIMES,FS_NORMAL,18);
-$table->SetFillColor(1,1,2,3,'red');
-
-$table->MergeCol(1);
-$graph->Add($table);
-$graph->Stroke();
-
-?>
-
diff --git a/#jpgraph/src/Examples/tabtitleex1.php b/#jpgraph/src/Examples/tabtitleex1.php
deleted file mode 100644
index 55d87ea1..00000000
--- a/#jpgraph/src/Examples/tabtitleex1.php
+++ /dev/null
@@ -1,51 +0,0 @@
-SetMarginColor('white');
-$graph->SetScale("textlin");
-$graph->SetFrame(false);
-$graph->SetMargin(30,50,30,30);
-
-$graph->tabtitle->Set(' Year 2003 ' );
-$graph->tabtitle->SetFont(FF_ARIAL,FS_BOLD,13);
-
-
-$graph->yaxis->HideZeroLabel();
-$graph->ygrid->SetFill(true,'#EFEFEF@0.5','#BBCCFF@0.5');
-$graph->xgrid->Show();
-
-$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
-
-// Create the first line
-$p1 = new LinePlot($datay1);
-$p1->SetColor("navy");
-$p1->SetLegend('Line 1');
-$graph->Add($p1);
-
-// Create the second line
-$p2 = new LinePlot($datay2);
-$p2->SetColor("red");
-$p2->SetLegend('Line 2');
-$graph->Add($p2);
-
-// Create the third line
-$p3 = new LinePlot($datay3);
-$p3->SetColor("orange");
-$p3->SetLegend('Line 3');
-$graph->Add($p3);
-
-$graph->legend->SetShadow('gray@0.4',5);
-$graph->legend->SetPos(0.1,0.1,'right','top');
-// Output line
-$graph->Stroke();
-
-?>
-
-
diff --git a/#jpgraph/src/Examples/testsuit.php b/#jpgraph/src/Examples/testsuit.php
deleted file mode 100644
index 4ffb2892..00000000
--- a/#jpgraph/src/Examples/testsuit.php
+++ /dev/null
@@ -1,107 +0,0 @@
-iType = $aType;
- if( $aDir == '' ) {
- $aDir = getcwd();
- }
- if( !chdir($aDir) ) {
- die("PANIC: Can't access directory : $aDir");
- }
- $this->iDir = $aDir;
- }
-
- function GetFiles() {
- $d = @dir($this->iDir);
- $a = array();
- while( $entry=$d->Read() ) {
- if( strstr($entry,".php") && strstr($entry,"x") && !strstr($entry,"show") && !strstr($entry,"csim") ) {
- $a[] = $entry;
- }
- }
- $d->Close();
- if( count($a) == 0 ) {
- die("PANIC: Apache/PHP does not have enough permission to read the scripts in directory: $this->iDir");
- }
- sort($a);
- return $a;
- }
-
- function GetCSIMFiles() {
- $d = @dir($this->iDir);
- $a = array();
- while( $entry=$d->Read() ) {
- if( strstr($entry,".php") && strstr($entry,"csim") ) {
- $a[] = $entry;
- }
- }
- $d->Close();
- if( count($a) == 0 ) {
- die("PANIC: Apache/PHP does not have enough permission to read the CSIM scripts in directory: $this->iDir");
- }
- sort($a);
- return $a;
- }
-
-
- function Run() {
- switch( $this->iType ) {
- case 1:
- $files = $this->GetFiles();
- break;
- case 2:
- $files = $this->GetCSIMFiles();
- break;
- default:
- die('Panic: Unknown type of test');
- break;
- }
- $n = count($files);
- echo "
Visual test suit for JpGraph
";
- echo "Testtype: " . ($this->iType==1 ? ' Standard images ':' Image map tests ');
- echo " Number of tests: $n