File Coverage

blib/lib/Chart/Plotly/Trace/Scatter/Marker/Gradient.pm
Criterion Covered Total %
statement 9 25 36.0
branch 0 8 0.0
condition 0 8 0.0
subroutine 3 4 75.0
pod 1 1 100.0
total 13 46 28.2


line stmt bran cond sub pod time code
1             package Chart::Plotly::Trace::Scatter::Marker::Gradient;
2 5     5   41 use Moose;
  5         12  
  5         44  
3 5     5   34843 use MooseX::ExtraArgs;
  5         14  
  5         45  
4 5     5   10905 use Moose::Util::TypeConstraints qw(enum union);
  5         15  
  5         48  
5             if ( !defined Moose::Util::TypeConstraints::find_type_constraint('PDL') ) {
6             Moose::Util::TypeConstraints::type('PDL');
7             }
8              
9             our $VERSION = '0.041'; # VERSION
10              
11             # ABSTRACT: This attribute is one of the possible options for the trace scatter.
12              
13             sub TO_JSON {
14 0     0 1   my $self = shift;
15 0   0       my $extra_args = $self->extra_args // {};
16 0           my $meta = $self->meta;
17 0           my %hash = %$self;
18 0           for my $name ( sort keys %hash ) {
19 0           my $attr = $meta->get_attribute($name);
20 0 0         if ( defined $attr ) {
21 0           my $value = $hash{$name};
22 0           my $type = $attr->type_constraint;
23 0 0 0       if ( $type && $type->equals('Bool') ) {
24 0 0         $hash{$name} = $value ? \1 : \0;
25             }
26             }
27             }
28 0           %hash = ( %hash, %$extra_args );
29 0           delete $hash{'extra_args'};
30 0 0 0       if ( $self->can('type') && ( !defined $hash{'type'} ) ) {
31 0           $hash{type} = $self->type();
32             }
33 0           return \%hash;
34             }
35              
36             has color => (
37             is => "rw",
38             isa => "Str|ArrayRef[Str]",
39             documentation =>
40             "Sets the final color of the gradient fill: the center color for radial, the right for horizontal, or the bottom for vertical.",
41             );
42              
43             has colorsrc => ( is => "rw",
44             isa => "Str",
45             documentation => "Sets the source reference on plot.ly for color .",
46             );
47              
48             has typesrc => ( is => "rw",
49             isa => "Str",
50             documentation => "Sets the source reference on plot.ly for type .",
51             );
52              
53             __PACKAGE__->meta->make_immutable();
54             1;
55              
56             __END__
57              
58             =pod
59              
60             =encoding utf-8
61              
62             =head1 NAME
63              
64             Chart::Plotly::Trace::Scatter::Marker::Gradient - This attribute is one of the possible options for the trace scatter.
65              
66             =head1 VERSION
67              
68             version 0.041
69              
70             =head1 SYNOPSIS
71              
72             use HTML::Show;
73             use Chart::Plotly;
74             use Chart::Plotly::Trace::Scatter;
75             my $scatter = Chart::Plotly::Trace::Scatter->new( x => [ 1 .. 5 ], y => [ 1 .. 5 ] );
76            
77             HTML::Show::show( Chart::Plotly::render_full_html( data => [$scatter] ) );
78              
79             =head1 DESCRIPTION
80              
81             This attribute is part of the possible options for the trace scatter.
82              
83             This file has been autogenerated from the official plotly.js source.
84              
85             If you like Plotly, please support them: L<https://plot.ly/>
86             Open source announcement: L<https://plot.ly/javascript/open-source-announcement/>
87              
88             Full reference: L<https://plot.ly/javascript/reference/#scatter>
89              
90             =head1 DISCLAIMER
91              
92             This is an unofficial Plotly Perl module. Currently I'm not affiliated in any way with Plotly.
93             But I think plotly.js is a great library and I want to use it with perl.
94              
95             =head1 METHODS
96              
97             =head2 TO_JSON
98              
99             Serialize the trace to JSON. This method should be called only by L<JSON> serializer.
100              
101             =head1 ATTRIBUTES
102              
103             =over
104              
105             =item * color
106              
107             Sets the final color of the gradient fill: the center color for radial, the right for horizontal, or the bottom for vertical.
108              
109             =item * colorsrc
110              
111             Sets the source reference on plot.ly for color .
112              
113             =item * typesrc
114              
115             Sets the source reference on plot.ly for type .
116              
117             =back
118              
119             =head1 AUTHOR
120              
121             Pablo Rodríguez González <pablo.rodriguez.gonzalez@gmail.com>
122              
123             =head1 COPYRIGHT AND LICENSE
124              
125             This software is Copyright (c) 2020 by Pablo Rodríguez González.
126              
127             This is free software, licensed under:
128              
129             The MIT (X11) License
130              
131             =cut