I want a gnuplot png file to seamlessly blend into the background page color of a website. Setting a background rectangle for the plot with a specific rgb color spec and the same rgbfor the html page works fine.
Colored gnuplot rectangle:
set object 1 rectangle from screen 0,0 to screen 1,1 behind fc rgb "#d0d0e0" lw 0
HTML page background color:
<body text="#000000" bgcolor="#D0D0E0" link="#0000EE" vlink="#551A8B" alink="#FF0000">
Now I would like to get rid of the fine black line around the plot (not the axis, the line around the border) so that it blends into the background perfectly.
I have tried lw 0
as above or setting rectangle styles with noborder
or border -1
but none works. I should mention that this is on gnuplot 4.6 patchlevel 0.
You can see the problem on my page here:
http://drgert.dyndns.ws:8000/bmp085/bmp085.php
Thanks for helping, Gert