Index: trunk/tools/czartool/Czarplot.pm
===================================================================
--- trunk/tools/czartool/Czarplot.pm	(revision 28923)
+++ trunk/tools/czartool/Czarplot.pm	(revision 29024)
@@ -103,8 +103,11 @@
     my ($processed, $pending, $faults);
     my $stage = undef;
+    my $pendingMinusFaults = undef;
     foreach $stage (@allStages) {
 
         $self->{_czarDb}->countProcessedPendingAndFaults($label, $stage, $beginTime, $endTime, \$processed, \$pending, \$faults);
-        print GNUDAT "$stage $processed, $pending, $faults\n";
+
+        $pendingMinusFaults = $pending - $faults;
+        print GNUDAT "$stage $faults $processed, $pendingMinusFaults\n";
     }
 
@@ -339,10 +342,12 @@
         "set boxwidth;" .
         "set style data histogram;" .
-        "set style histogram cluster gap 3;" .
+ "set style histogram rowstacked;" .
         "set style fill solid border -1;" .
-        "set bmargin 5;" .
         "set ylabel \"Exposures\";" .
-        "plot '$inputFile' using 2:xtic(1) title \"Processed\" lt 2, '' using 3 title \"Pending\" lt 4, '' using 4 title \"Faults\" lt 7;" . 
+        "set boxwidth 0.75;" .
+        "plot '$inputFile' using 2:xtic(1) title \"Faults\" lt 7, '' using 3 title \"Processed\" lt 2, '' using 4 title \"Pending\" lt 4;" . 
         "\n";
+
+
 
     close GP;
