@@ -115,11 +115,12 @@ sub interpretCommandline
115
115
116
116
' 3d!' , ' colormap!' , ' lines!' , ' points!' , ' circles' ,
117
117
' legend=s{2}' , ' autolegend!' ,
118
- ' xlabel=s' , ' x2label=s' , ' ylabel=s' , ' y2label=s' , ' zlabel=s' ,
118
+ ' xlabel=s' , ' x2label=s' , ' ylabel=s' , ' y2label=s' , ' zlabel=s' , ' cblabel=s ' ,
119
119
' title=s' , ' xlen=f' ,
120
120
' xmin=s' , ' xmax=s' , ' x2min=s' , ' x2max=s' ,
121
121
' ymin=f' , ' ymax=f' , ' y2min=f' , ' y2max=f' ,
122
122
' zmin=f' , ' zmax=f' ,
123
+ ' cbmin=f' , ' cbmax=f' ,
123
124
' x2=s@' , ' y2=s@' , ' x1y2=s@' , ' x2y1=s@' , ' x2y2=s@' ,
124
125
' style=s{2}' , ' curvestyle=s{2}' , ' curvestyleall=s' , ' styleall=s' , ' with=s' ,
125
126
' extracmds=s@' , ' cmds=s@' ,
@@ -796,6 +797,7 @@ sub mainThread
796
797
print (PIPE " set ylabel \" $options {ylabel }\"\n " ) if defined $options {ylabel };
797
798
print (PIPE " set y2label \" $options {y2label}\"\n " ) if defined $options {y2label };
798
799
print (PIPE " set zlabel \" $options {zlabel }\"\n " ) if defined $options {zlabel };
800
+ print (PIPE " set cblabel \" $options {cblabel}\"\n " ) if defined $options {cblabel };
799
801
print (PIPE " set title \" $options {title }\"\n " ) if defined $options {title };
800
802
801
803
if ($options {square })
@@ -2003,10 +2005,11 @@ instance C<--set 'xrange [20:10]'> to set the given inverted bounds.
2003
2005
2004
2006
=item
2005
2007
2006
- C<--xlabel/x2label/ylabel/y2label/zlabel xxx >
2008
+ C<--xlabel/x2label/ylabel/y2label/zlabel/cblabel xxx >
2007
2009
2008
2010
Label the given axis. The x2/y2-axis labels do not apply to 3d plots while the
2009
- z-axis label applies I<only > to 3d plots.
2011
+ z-axis label applies I<only > to 3d plots. The "cblabel" applies to the colorbar,
2012
+ if there is one.
2010
2013
2011
2014
=item
2012
2015
0 commit comments