File: chartTitle_8.pl

package info (click to toggle)
libchart-gnuplot-perl 0.23-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 944 kB
  • sloc: perl: 4,862; makefile: 113
file content (27 lines) | stat: -rwxr-xr-x 618 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/perl -w
use strict;
use Chart::Gnuplot;

#-----------------------------------------------
# Demonstrate setting sophisticated chart title
#-----------------------------------------------

# Initiate the chart object
my $chart = Chart::Gnuplot->new(
    output  => 'gallery/chartTitle_8.png',
    title   => {
        text     => "My so^{phis}ticate_d title",
        font     => "arial, 20",
        color    => "#99ccff",
        offset   => "-10, 2",
        enhanced => 'on',
    },
);

# Data sets
my $cos = Chart::Gnuplot::DataSet->new(
    func => "cos(x)",
);

# Plot the graph
$chart->plot2d($cos);