help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Default font in plot?


From: Ben Abbott
Subject: Re: Default font in plot?
Date: Wed, 04 May 2011 15:13:51 -0400

On May 4, 2011, at 1:02 PM, dirac wrote:

> Hi there, I was wondering what the default font is for the plots in Octave?
> Unfortunately I am having to use Excel for one of my plots and wanted to
> match it as closely as possible so that there is consistency in my report.
> It looks like arial, but I'm probably wrong!
> 
> Thanks :)

Perhaps what you need to know is how to change the font used by Octave?

You can change the default fontname used by all plots by beginning you Octave 
session with ...

        set (0, "defaultaxesfontname", "Arial")
        set (0, "defaulttextfontname", "Arial")

Or to change the font for all existing objects ...

        h = findall (0, "-property", "fontname");
        set (h, "fontname", "Arial")

Ben





reply via email to

[Prev in Thread] Current Thread [Next in Thread]