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

NAME

Google::Chart::WithAxis - Charts With Axis

SYNOPSIS

    my $chart = Google::Chart->create( ... );

    $chart->add_axis(
        location        => 'x',              # 'x', 'y', 'r', or 't'
                                             # optional parameters
        alignment       => 0,                #  -1, 0, or 1
        color           => $hexcolor,        # color of this axis
        font_size       => $points,          # font size
        labels          => \@labels,         # labels for this axis
        label_positions => \@positions,      # posisions
        range           => [ $start, $end ], # range start and end
    );

    # multiple axis can be added
    $chart->add_axis( ... );
    $chart->add_axis( ... );
    $chart->add_axis( ... );

ATTRIBUTES

axes

Individual Axis objects. You probably shouldn't be touching this.

METHODS

prepare_query

Hooks to Google::Chart->prepare_query().