|
From: Theo <th...@gm...> - 2013-03-12 12:19:29
|
Hi Gerhard, one simple way to do it: Plot the data twice, slightly shifted and in grey. set boxwidth 0.8 relative xshift = 0.1 # or some other value yshift = 0.1 plot 'Data.txt' using ($1+xshift):($2-yshift) with boxes fs solid 0.25 lt "grey", '' using ($1):($2) with boxes fs solid You also could create a 3D-Plot to create a shadow-like appearance. However, if you can plot data in 2D there is no need to plot it in 3D. Theo. |