MathGroup Archive 2009

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

Search the Archive

Re: Setting global Plot font options

  • To: mathgroup at smc.vnet.net
  • Subject: [mg96914] Re: Setting global Plot font options
  • From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
  • Date: Fri, 27 Feb 2009 06:12:15 -0500 (EST)
  • Organization: Uni Leipzig
  • References: <go63pk$pvg$1@smc.vnet.net>
  • Reply-to: kuska at informatik.uni-leipzig.de

Hi,

Plot[Sin[x], {x, 0, 2 Pi}, Frame -> True, FrameLabel -> {x, Sin[x]},
  BaseStyle -> {FontFamily -> "Helvetica", FontSize -> 16}]

or

SetOptions[
   #,
   BaseStyle ->
     {FontFamily -> "Helvetica", FontSize -> 16}] & /@ {Plot,ListPlot};

Regards
   Jens

Matt Johnson wrote:
> Hi -
> Where can I set the global default font for plot objects? I'd like
> AxesLabel, FrameLabel, PlotLegend, and the Ticks to all be the same
> font without having to specify it in the Plot call every time.
> TIA,
> Matt
> 


  • Prev by Date: Re: DiscretePlot
  • Next by Date: Re: Map and functional constructs to replace iterative statements
  • Previous by thread: Setting global Plot font options
  • Next by thread: how to specify sheet names in xls export?