[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
One plot line, different thicknesses
- Subject: One plot line, different thicknesses
- From: Declan Vogt <drv102(at)ohm.york.ac.uk>
- Date: Mon, 18 Sep 2000 15:24:09 +0100
- Newsgroups: comp.lang.idl-pvwave
- Organization: The University of York, UK
- Sender: drv102(at)york.ac.uk
- Xref: news.doit.wisc.edu comp.lang.idl-pvwave:21429
I want to plot a data line on a graph, and emphasize a range of the data
by thickening the line. I'm having problems because of how the symbols
are drawn and was wondering if anyone can help me.
1. Use of max and min leaves a gap in the line:
f=findgen(20)
plot, f, /nodata
plot, f, max=10.1
plot, f, min=10.1, thick=2
2. If I redraw the thick line over the thin line, I end up with symbol
clashes:
f=findgen(20)
plot, f, /nodata
plot, f, linestyle=4
plot, f, min=10.1, linestyle=4, thick=2
I'm trying to get a line that looks like one continuous line, without
gaps and definitely without line symbols changing along the length of
the line.
(Oh yes, and I can't use colour)
Any hints?
Declan