gnuplot / label (3E)
not so FAQ |
About Label (No.3)Can I use a colored label ?[ver.4] ONLY ! Gnuplot 3.8 allows you to change colors of label, title, and axis names. gnuplot> set style line 1 lt 1 gnuplot> set style line 2 lt 3 gnuplot> set style line 3 lt 4 gnuplot> set style line 4 lt 5 gnuplot> set ylabel "Y-axis" textcolor lt 1 gnuplot> set xlabel "X-axis" textcolor lt 2 gnuplot> set title "Sample" textcolor lt 3 gnuplot> set label "Label" at 2,0.5 textcolor lt 4 gnuplot> plot exp(-x) ![]() How can I change the direction of Y-axis name ? Orientation (direction) of Y axis name depends on the terminal If you want to change the direction of Y axis, use gnuplot> set lmargin 20 gnuplot> set label 1 'Y-AXIS' at graph -0.2, graph 0.5 The position of text is specified by using graph coordinate, |