Re: plot

Markus Mützel <[email protected]> Mon, 4 Oct 2021 11:36:56 +0200
Newsgroups gmane.comp.gnu.octave.general
Message-ID <trinity-01b870f9-7e8f-47ac-b76c-cb667df77809-1633340216371@3c-app-gmx-bap06>
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



----------
We are transitioning to a web based forum
for community help discussions at
https://octave.discourse.group/c/help