Mailing List Archive

svn commit: r329984 - /spamassassin/trunk/masses/rule-qa/rule-hits-over-time
Author: jm
Date: Mon Oct 31 21:37:23 2005
New Revision: 329984

URL: http://svn.apache.org/viewcvs?rev=329984&view=rev
Log:
get points to be the same colour as the smoothed lines

Modified:
spamassassin/trunk/masses/rule-qa/rule-hits-over-time

Modified: spamassassin/trunk/masses/rule-qa/rule-hits-over-time
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/masses/rule-qa/rule-hits-over-time?rev=329984&r1=329983&r2=329984&view=diff
==============================================================================
--- spamassassin/trunk/masses/rule-qa/rule-hits-over-time (original)
+++ spamassassin/trunk/masses/rule-qa/rule-hits-over-time Mon Oct 31 21:37:23 2005
@@ -474,15 +474,15 @@
push @plot,
qq{ '$tmpdir/plot.$graphname.data' using }.
qq{ 1:(\$$col >= 0 ? \$$col : 1/0) }.
-
- qq{ with points pt $style ps 1 }.
+ # note: using "lt $style" gives us points in the same
+ # colour as the lines in the smoothed graph below
+ qq{ with points lt $style pt $style ps 1 }.
qq{ title '$legend' };

foreach my $a (0 .. $num_alphas) {
push @plot,
qq{ '$tmpdir/avgs$a.$graphname.data' using }.
qq{ 1:(\$$col >= 0 ? \$$col : 1/0) }.
- # qq{ smooth bezier }.
qq{ with lines lt $style lw 3 }.
qq{ title ' (DEA a=$dea_alphas->[$a])' };
}