|
From: Zhong R. <re...@uc...> - 2009-10-14 23:57:43
|
I did: set label rotate plot 'file' u 1:2:3 with labels Should this be sufficient to make the labels vertical? What am I missing? Zhong |
|
From: Thomas S. <t.s...@fz...> - 2009-10-15 08:45:54
|
'set label' doesn't have any effect on the plotting style 'with labels', and a 'set style labels ...' isn't existing up to now, so you have to give the rotation angle within the plot command: plot 'file' u 1:2:3 with labels rotate see: http://www.gnuplot.info/docs/node253.html renzresearch wrote: > > I did: > > set label rotate > plot 'file' u 1:2:3 with labels > > Should this be sufficient to make the labels vertical? What > am I missing? > > Zhong > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Gnuplot-info mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > > -- View this message in context: http://www.nabble.com/with-labels-tp25901122p25904946.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |
|
From: Zhong R. <re...@uc...> - 2009-10-15 15:29:03
|
Then the help info is confusing, especially (see `set label`) part. I here quote: gnuplot> help labels The `labels` style is available only if gnuplot is built with configuration option --enable-datastrings. For a 2-D plot with labels you must specify 3 input data columns; the text string found in the third column is printed at the X and Y coordinates generated by the first two column specifiers. The font, color, rotation angle and other properties of the printed text may be specified as additional command options (see `set label`). The example below will generate a 2-D plot with text labels taken from column 4 of the input file (`tc lt 2` is shorthand for `textcolor linetype 2`, which is green). ---- Original message ---- >Date: Thu, 15 Oct 2009 01:45:44 -0700 (PDT) >From: Thomas Sefzick <t.s...@fz...> >Subject: Re: [Gnuplot-info] with labels >To: gnu...@li... > > >'set label' doesn't have any effect on the plotting style 'with labels', >and a 'set style labels ...' isn't existing up to now, so you have to >give the rotation angle within the plot command: > >plot 'file' u 1:2:3 with labels rotate > >see: >http://www.gnuplot.info/docs/node253.html > > >renzresearch wrote: >> >> I did: >> >> set label rotate >> plot 'file' u 1:2:3 with labels >> >> Should this be sufficient to make the labels vertical? What >> am I missing? >> >> Zhong >> >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart your >> developing skills, take BlackBerry mobile applications to market and stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> _______________________________________________ >> Gnuplot-info mailing list >> Gnu...@li... >> https://lists.sourceforge.net/lists/listinfo/gnuplot-info >> >> > >-- >View this message in context: http://www.nabble.com/with-labels-tp25901122p25904946.html >Sent from the Gnuplot - User mailing list archive at Nabble.com. > > >------------------------------------------------------------------------------ >Come build with us! The BlackBerry(R) Developer Conference in SF, CA >is the only developer event you need to attend this year. Jumpstart your >developing skills, take BlackBerry mobile applications to market and stay >ahead of the curve. Join us from November 9 - 12, 2009. Register now! >http://p.sf.net/sfu/devconference >_______________________________________________ >Gnuplot-info mailing list >Gnu...@li... >https://lists.sourceforge.net/lists/listinfo/gnuplot-info |
|
From: Thomas S. <t.s...@fz...> - 2009-10-15 17:30:40
|
maybe something like this should be added to the help text: 'labels' is a plotting style taking the same arguments like the 'set label' command. renzresearch wrote: > > Then the help info is confusing, especially (see `set label`) > part. I here quote: > > gnuplot> help labels > The `labels` style is available only if gnuplot is built with > configuration > option --enable-datastrings. For a 2-D plot with labels you > must specify > 3 input data columns; the text string found in the third > column is printed at > the X and Y coordinates generated by the first two column > specifiers. The > font, color, rotation angle and other properties of the > printed text may be > specified as additional command options (see `set label`). > The example below > will generate a 2-D plot with text labels taken from column 4 > of the input > file (`tc lt 2` is shorthand for `textcolor linetype 2`, > which is green). > > > > > ---- Original message ---- >>Date: Thu, 15 Oct 2009 01:45:44 -0700 (PDT) >>From: Thomas Sefzick <t.s...@fz...> >>Subject: Re: [Gnuplot-info] with labels >>To: gnu...@li... >> >> >>'set label' doesn't have any effect on the plotting style > 'with labels', >>and a 'set style labels ...' isn't existing up to now, so you > have to >>give the rotation angle within the plot command: >> >>plot 'file' u 1:2:3 with labels rotate >> >>see: >>http://www.gnuplot.info/docs/node253.html >> >> >>renzresearch wrote: >>> >>> I did: >>> >>> set label rotate >>> plot 'file' u 1:2:3 with labels >>> >>> Should this be sufficient to make the labels vertical? What >>> am I missing? >>> >>> Zhong >>> >>> > ------------------------------------------------------------------------------ >>> Come build with us! The BlackBerry(R) Developer Conference > in SF, CA >>> is the only developer event you need to attend this year. > Jumpstart your >>> developing skills, take BlackBerry mobile applications to > market and stay >>> ahead of the curve. Join us from November 9 - 12, 2009. > Register now! >>> http://p.sf.net/sfu/devconference >>> _______________________________________________ >>> Gnuplot-info mailing list >>> Gnu...@li... >>> https://lists.sourceforge.net/lists/listinfo/gnuplot-info >>> >>> >> >>-- >>View this message in context: > http://www.nabble.com/with-labels-tp25901122p25904946.html >>Sent from the Gnuplot - User mailing list archive at Nabble.com. >> >> >>------------------------------------------------------------------------------ >>Come build with us! The BlackBerry(R) Developer Conference in > SF, CA >>is the only developer event you need to attend this year. > Jumpstart your >>developing skills, take BlackBerry mobile applications to > market and stay >>ahead of the curve. Join us from November 9 - 12, 2009. > Register now! >>http://p.sf.net/sfu/devconference >>_______________________________________________ >>Gnuplot-info mailing list >>Gnu...@li... >>https://lists.sourceforge.net/lists/listinfo/gnuplot-info > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Gnuplot-info mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > > -- View this message in context: http://www.nabble.com/with-labels-tp25901122p25912783.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |