help-octave
[Top][All Lists]
Advanced

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

Re: plot


From: Markus Mützel
Subject: Re: plot
Date: Mon, 4 Oct 2021 11:36:56 +0200

Am 04. Oktober 2021 um 03:43 Uhr schrieb "Josemar Pereira da Silva":
> I would like to give suggestions on editing the graphics. You could improve 
> the editing of graphics in the following aspects.
> Give the possibility to eliminate, change the color, increase the thickness, 
> of the lines.
> Give the possibility to change the font and size of the title, captions and 
> graph axes.
> All these possibilities could be done in the already built graphic window.

That should be possible already by using the `set` functions to change 
properties of the existing graphics objects.

E.g.:

hl = plot([0 1]);  % plot line with default properties
set(hl, 'Color', 'k', 'LineWidth', 2);  % change properties
delete(hl);  % remove line from axes

Markus




reply via email to

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