
Chart::OFC2::Extremes - OFC2 axis or chart extremes

use Chart::OFC2::Extremes;
has 'extremes' => (
is => 'rw',
isa => 'Chart::OFC2::Extremes',
default => sub { Chart::OFC2::Extremes->new() },
lazy => 1,
);
$self->extremes->reset();


has 'x_axis_max' => (is => 'rw', isa => 'Num|Undef', );
has 'x_axis_min' => (is => 'rw', isa => 'Num|Undef', );
has 'y_axis_max' => (is => 'rw', isa => 'Num|Undef', );
has 'y_axis_min' => (is => 'rw', isa => 'Num|Undef', );
has 'other' => (is => 'rw', isa => 'Num|Undef', );

Object constructor.
Calculate x or y minimal and maximal values and set (x|y)_axis_(min|max) according.
Returns HashRef that is possible to give to encode_json() function.

Jozef Kutej