multiplot title font

View: New views
3 Messages — Rating Filter:   Alert me  

multiplot title font

by Shigeharu TAKENO :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

shige 09/27 2009
----------------

Current version of gnuplot supports

  set multiplot title "<string>"

but we can not specify the font of the title string. Though it may
be done by

  set label "<string>" at screen 0.3, 0.95 font "<fontname>,<size>"
  set multiplot title ""
  ...

I think it is not good.

We will happy if the specification of the font of multiplot title
are supported.

+========================================================+
 Shigeharu TAKENO     NIigata Institute of Technology
                       kashiwazaki,Niigata 945-1195 JAPAN
 shige@...   TEL(&FAX): +81-257-22-8161
+========================================================+

------------------------------------------------------------------------------
Come build with us! The BlackBerry® 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/devconf
_______________________________________________
gnuplot-beta mailing list
gnuplot-beta@...
https://lists.sourceforge.net/lists/listinfo/gnuplot-beta

Re: multiplot title font

by Shigeharu TAKENO :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

shige 10/01 2009
----------------

I wrote:
| Current version of gnuplot supports
|
|   set multiplot title "<string>"
|
| but we can not specify the font of the title string. Though it may
| be done by

I found the following short patch may be enable us to use

  set multiplot title "<string>" font "<fontname>,<size>"

but I don't know how to make space according to the font size.

----- From Here -----
--- term.c.ORG Sat Sep  5 14:27:41 2009
+++ term.c Thu Oct  1 18:25:15 2009
@@ -651,6 +659,16 @@
     if ((s = try_to_get_string())) {
  free(mp_layout.title.text);
  mp_layout.title.text = s;
+    }
+    continue;
+ }
+
+ /* shige */
+ if (equals(c_token, "font")) {
+    c_token++;
+    if ((s = try_to_get_string())) {
+ free(mp_layout.title.font);
+ mp_layout.title.font = s;
     }
     continue;
  }
----- To Here -----

+========================================================+
 Shigeharu TAKENO     NIigata Institute of Technology
                       kashiwazaki,Niigata 945-1195 JAPAN
 shige@...   TEL(&FAX): +81-257-22-8161
+========================================================+

------------------------------------------------------------------------------
Come build with us! The BlackBerry® 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/devconf
_______________________________________________
gnuplot-beta mailing list
gnuplot-beta@...
https://lists.sourceforge.net/lists/listinfo/gnuplot-beta

Re: multiplot title font

by Ethan Merritt :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Thursday 01 October 2009, Shigeharu TAKENO wrote:
> shige 10/01 2009
> >
> I found the following short patch may be enable us to use
>
>   set multiplot title "<string>" font "<fontname>,<size>"

Applied.
Thanks.

------------------------------------------------------------------------------
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-beta mailing list
gnuplot-beta@...
https://lists.sourceforge.net/lists/listinfo/gnuplot-beta