The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Quiq::Gnuplot::Plot - Gnuplot-Plot

BASE CLASS

Quiq::Hash

DESCRIPTION

Ein Objekt der Klasse repräsentiert einen Plot.

METHODS

Konstruktor

new() - Instantiiere Plot-Objekt

Synopsis

  $plt = Quiq::Gnuplot::Plot->new;

Objektmethoden

title() - Setze/liefere Plot-Titel

Synopsis

  $title = $plt->title;
  $title = $plt->title($title);

addGraph() - Füge Graph zum Plot-Objekt hinzu

Synopsis

  $plt->addGraph($gph);
  $plt->addGraph(@keyVal);

Alias

add()

Description

Füge Graph $gph oder einen Graph mit der Attributen @keyVal zum Plot hinzu. In letzterem Fall instantiiert die Methode das Quiq::Gnuplot::Graph-Objekt.

addArrow() - Füge Arrow zum Plot-Objekt hinzu

Synopsis

  $plt->addArrow($arw);
  $plt->addArrow(@keyVal);

Description

Füge Arrow $arw oder einen Arrow mit der Attributen @keyVal zum Plot hinzu. In letzterem Fall instantiiert die Methode selbst das Quiq::Gnuplot::Arrow-Objekt.

addLabel() - Füge Label zum Plot-Objekt hinzu

Synopsis

  $plt->addLabel($lab);
  $plt->addLabel(@keyVal);

Description

Füge Label $lab oder ein Label mit den Attributen @keyVal zum Plot hinzu. In letzterem Fall instantiiert die Methode selbst das Quiq::Gnuplot::Label-Objekt.

graphsWithData() - Liefere Graphen mit Daten

Synopsis

  @gph | $gphA = $plt->graphsWithData;

VERSION

1.208

AUTHOR

Frank Seitz, http://fseitz.de/

COPYRIGHT

Copyright (C) 2023 Frank Seitz

LICENSE

This code is free software; you can redistribute it and/or modify it under the same terms as Perl itself.