From 6760aa330d2a4096e56290e0b7cd6bfc304a96c2 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 28 Jun 2013 13:07:33 -0400 Subject: [PATCH] figures/v-dep: Remove UnFill from plot legend addition It was blanking the plots. --- src/figures/v-dep/v-dep-sd.asy | 2 +- src/figures/v-dep/v-dep.asy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/figures/v-dep/v-dep-sd.asy b/src/figures/v-dep/v-dep-sd.asy index 5de276e..d62ad40 100644 --- a/src/figures/v-dep/v-dep-sd.asy +++ b/src/figures/v-dep/v-dep-sd.asy @@ -39,7 +39,7 @@ xequals(pic, x=1e-6*xscale, p=dashed); xaxis(pic, sLabel("Pulling speed (nm/s)"), BottomTop, LeftTicks); yaxis(pic, sLabel("Unfolding force (pN)"), LeftRight, RightTicks); -add(pic, legend(pic), point(pic, E), 20E, UnFill); +add(pic, legend(pic), point(pic, E), 20E); picture hist_picture(string datafile, real xmin=-infinity, real xmax=infinity, diff --git a/src/figures/v-dep/v-dep.asy b/src/figures/v-dep/v-dep.asy index a91fc1d..9170da2 100644 --- a/src/figures/v-dep/v-dep.asy +++ b/src/figures/v-dep/v-dep.asy @@ -35,4 +35,4 @@ label(sLabel("Pulling speed dependence"), point(N), N); xaxis(sLabel("Pulling speed (nm/s)"), BottomTop, LeftTicks); yaxis(sLabel("Unfolding force (pN)"), LeftRight, RightTicks); -add(legend(), point(E), 20E, UnFill); +add(legend(), point(E), 20E); -- 2.26.2