|
From: babelproofreader <bab...@gm...> - 2009-12-02 00:07:37
|
With the script below I have set the background colour of the plot to black, but the problem is that the text in the key and the grid lines are also black and so can't be seen. How can I change the key text and grid line colours so that they can be seen? reset set title " $1 Prices with Kalman filter" set datafile separator "," set key top left set xdata time set timefmt "%d/%m/%Y" set grid set object 1 rect from graph 0, 0, 0 to graph 1, 1, 0 behind lw 1.0 fc rgb "#000000" fillstyle solid 1.00 border -1 plot "$1ind" using 1:2:3:4:5 notitle with candlesticks lt 9, \ "$1ind" using 1:24 title 'Optimum kalman' with line lt 1 -- View this message in context: http://old.nabble.com/Change-colour-of-key-text-tp26601043p26601043.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |