MathGroup Archive 2001

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Ticks & MultipleListPlot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg31493] Re: Ticks & MultipleListPlot
  • From: "Steve Luttrell" <luttrell at signal.qinetiq.com>
  • Date: Thu, 8 Nov 2001 04:54:35 -0500 (EST)
  • Organization: Defence Evaluation & Research Agency
  • References: <9sb4ep$dda$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

"Andreas Unterkircher" <unterkir at ivp.bepr.ethz.ch> wrote in message
news:9sb4ep$dda$1 at smc.vnet.net...
> I have the following problem with MultipleListPlot:
> I could scale the Font used for the options AxesLabel and PlotLegend. E.g.
> I can select a specific font for the AxesLabel with
> AxesLabel->{StyleForm["bla",FontSize->6,FontFamily->"Helvetica"]}
> Now the problem is that the numbers used for the ticks of the x- and y-
> axes still are displayed in the large font. I tried something like
> Ticks->{{1,StyleForm[...]},...}
> But this does not work. Does anybody know a solution to this problem ?

Here is an example of what you might want to do. I have exaggerated the font
chosen so that you can clearly see the effect on screen.

<<Graphics`MultipleListPlot`

list1=Table[{x,Sin[2Pi x]},{x,0,1,0.1}];
list2=Table[{x,Cos[2Pi x]},{x,0,1,0.1}];

MultipleListPlot[list1,list2,
    TextStyle->{FontWeight->"Bold",FontSlant->"Italic",FontSize->20}];


--
Steve Luttrell
QinetiQ
Malvern Technology Centre
UK




  • Prev by Date: Re: ListContourPlot Color
  • Next by Date: Re: ListContourPlot Color
  • Previous by thread: Ticks & MultipleListPlot
  • Next by thread: Re: Ticks & MultipleListPlot