|
From: Thomas S. <t.s...@fz...> - 2011-08-15 18:54:15
|
Mikhail Kononets <mkononets <at> gmail.com> writes: > > Hi guys. > > i would like to have something like this in my plot title (or in my > cblabel definition): > > set title "A nice plot title. positive values <-[typed in red color] > mean this, negative values <-[typed in blue color] mean that." > > blue and read are margins of color palette of a pm3d surface plot. > > is it possible somehow ? > > Misha. if you compose the title using several labels, yes: set title "A nice plot title.\n\n" set label 1 "positive values " at graph 0.5,screen 0.93 right \ textcolor rgb "red" set label 2 "mean this" at graph 0.5,screen 0.93 left set label 3 "negative values " at graph 0.5,screen 0.90 right \ textcolor rgb "blue" set label 4 "mean that" at graph 0.5,screen 0.90 left |