-
Notifications
You must be signed in to change notification settings - Fork 4
/
multiple-renderers.pl
131 lines (107 loc) · 3.5 KB
/
multiple-renderers.pl
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/usr/bin/perl
use strict;
use Chart::Clicker;
use Chart::Clicker::Context;
use Chart::Clicker::Data::DataSet;
use Chart::Clicker::Data::Marker;
use Chart::Clicker::Data::Series;
use Chart::Clicker::Renderer::Bar;
use Chart::Clicker::Renderer::Point;
use Geometry::Primitive::Rectangle;
use Graphics::Color::RGB;
my $cc = Chart::Clicker->new(width => 500, height => 250, format => 'pdf');
my @hours = qw(
1 2 3 4 5 6 7 8 9 10 11 12
);
my @bw1 = qw(
5.8 5.0 4.9 4.8 4.5 4.25 3.5 2.9 2.5 1.8 .9 .8
);
my @bw2 = qw(
.7 1.1 1.7 2.5 3.0 4.5 5.0 4.9 4.7 4.8 4.2 4.4
);
my @bw3 = qw(
.3 1.4 1.2 1.5 4.0 3.5 2.0 1.9 2.7 4.2 3.2 1.1
);
my $series1 = Chart::Clicker::Data::Series->new(
keys => \@hours,
values => \@bw1,
);
my $series2 = Chart::Clicker::Data::Series->new(
keys => \@hours,
values => \@bw2,
);
# We'll create a dataset with our first two series in it...
my $ds = Chart::Clicker::Data::DataSet->new(
series => [ $series1 ]
);
my $ds0 = Chart::Clicker::Data::DataSet->new(
series => [ $series2 ]
);
# We'll put the third into it's own dataset so we can put it in a new context
my $series3 = Chart::Clicker::Data::Series->new(
keys => \@hours,
values => \@bw3,
);
my $ds1 = Chart::Clicker::Data::DataSet->new(
series => [ $series3 ]
);
# Create a new context
my $other_context = Chart::Clicker::Context->new(
name => 'other'
);
my $third_context = Chart::Clicker::Context->new(
name => 'third'
);
my $defctx = $cc->get_context('default');
# Set it's labels...
$other_context->range_axis->label('Solor');
$other_context->domain_axis->label('Amet');
$other_context->share_axes_with($defctx);
$third_context->share_axes_with($defctx);
# Instruct the ds1 dataset to use the 'other' context. DataSets default to
# the 'default' context.
$ds1->context('other');
$cc->add_to_contexts($other_context);
$ds0->context('third');
$cc->add_to_contexts($third_context);
# Pretty stuff
$cc->border->width(0);
my $grey = Graphics::Color::RGB->new(
red => .36, green => .36, blue => .36, alpha => 1
);
my $moregrey = Graphics::Color::RGB->new(
red => .71, green => .71, blue => .71, alpha => 1
);
my $orange = Graphics::Color::RGB->new(
red => .88, green => .48, blue => .09, alpha => 1
);
$cc->color_allocator->colors([ $grey, $moregrey, $orange ]);
# Add the datasets to the chart
$cc->add_to_datasets($ds);
$cc->add_to_datasets($ds0);
$cc->add_to_datasets($ds1);
$cc->plot->grid->show_domain(0);
# Set some labels on the default context
my $defctx = $cc->get_context('default');
$other_context->renderer->brush->width(2);
$other_context->renderer->brush->dash_pattern([qw(5 3)]);
$defctx->range_axis->label('Lorem');
$defctx->domain_axis->label('Ipsum');
# $defctx->domain_axis->tick_label_angle(0.785398163);
$defctx->range_axis->label_font->family('Hoefler Text');
$defctx->domain_axis->fudge_amount(.02);
$defctx->range_axis->tick_font->family('Gentium');
$defctx->domain_axis->tick_font->family('Gentium');
$defctx->domain_axis->label_font->family('Hoefler Text');
$cc->background_color(
Graphics::Color::RGB->new(red => .95, green => .94, blue => .92)
);
$cc->plot->grid->background_color->alpha(0);
# Here's the magic: You can set a renderer for any context. In this case
# we'll change the default to a Bar. Voila!
$defctx->renderer(Chart::Clicker::Renderer::Bar->new(bar_padding => 20));
$third_context->renderer(Chart::Clicker::Renderer::Point->new);
$third_context->renderer->shape->radius(7);
$cc->legend->font->family('Hoefler Text');
$cc->draw;
$cc->write('foo.pdf');