Group
Extension

Matches 3

Wight-Chart ( E/EL/ELLIOTT/Wight-Chart-0.003.tar.gz, ELLIOTT, 2013; MetaCPAN )
Wight-Chart/lib/Wight/Chart.pm ( view source; MetaCPAN )
ON

use strictures 1;
use Moo;
use Wight;
use Encode;
use File::Share qw/dist_file/;
use Cwd;
use JSON::XS;

has 'output' => ( is => 'rw', default => sub { 'example.png'} );
has 'rows' => ( is => 'rw'
Wight-Chart ( E/EL/ELLIOTT/Wight-Chart-0.003.tar.gz, ELLIOTT, 2013; MetaCPAN )
Wight-Chart/lib/Wight/Chart/ChartJS.pm ( view source; MetaCPAN )
package Wight::Chart::ChartJS;

use Moo;
use JSON::XS;
use Encode;
use Graphics::Color::RGB;
extends 'Wight::Chart';

our $VERSION = '0.003'; # VERSION

#TODO: import roles for each type for more opti
park => { cls => "Line", config => {
    scaleShowLabels => JSON::XS::false,
    pointDot => JSON::XS::false,
    scaleShowGridLines => JSON::XS::false,
  }},
  bar => { cls => "Bar" },
  radar => { c
_;
  my $w = $self->wight;

  my $src = $types->{$self->type};

  my $config = {
    animation => JSON::XS::false,
    %{$src->{config} || {} },
    %{$local_config || {} },
  };

  #if type is spark,
Wight-Chart ( E/EL/ELLIOTT/Wight-Chart-0.003.tar.gz, ELLIOTT, 2013; MetaCPAN )
Wight-Chart/lib/Wight/Chart/Google.pm ( view source; MetaCPAN )
CT: Save google charts to images using phantomjs

our $VERSION = '0.003'; # VERSION

use Moo;
use JSON::XS;
use Encode;
extends 'Wight::Chart';
sub src_html { 'google.html' }

#TODO: import roles for 
$self->height - $self->border,
    },
    %{$self->options}
  };

  my $args = decode_utf8(encode_json({
    options => $options,
    type => $types->{$self->type},
    rows => $self->rows,
    column

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.