Result:
found more than 419 distributions - search limited to the first 2001 files matching your query ( run in 0.904 )


Embperl

 view release on metacpan or  search on metacpan

eg/web/config.pl  view on Meta::CPAN

         },
        { menu => 'Introduction',           uri => 'pod/intro/', sub =>
            [
            { menu => 'Embperl',            uri => 'Intro.htm',                 file => { en => 'Intro.pod', 'de' => 'IntroD.pod'},
                  desc => { en => 'Introduction of Embperl basic capablitities', 
                            de => 'Einführung in die grundlegenden Möglichkeiten von Embperl' }},
            { menu => 'Embperl::Object',    uri => 'IntroEmbperlObject.htm',    file => 'IntroEmbperlObject.pod',
                  desc => { en => 'Introduction to object-oriented website creation with Embperl', 
                            de => 'Einführung in das objekt-orientierte Erstellen von Websites mit Embperl' }},
            { menu => 'Embperl 2 Advanced',    uri => 'IntroEmbperl2.htm',    file => 'IntroEmbperl2.pod',
                  desc => { en => 'Introduction to advanced features of Embperl 2', 

 view all matches for this distribution


Encode-Guess-Educated

 view release on metacpan or  search on metacpan

t/data/cp1252/10676968.cp1252  view on Meta::CPAN

   as in a, and aligned with the secondary structure of Ras dot
   GppNHp^[46]30 (light blue lines). Contacts between helix alpha 12 and
   the rest of the protein are indicated: asterisk, direct; circle,
   water-mediated polar interactions; hash sign for both. For brevity,
   sequences with lowest homology have been chosen.
   [47]High resolution image and legend (233K)

 §5§ [48] Table 1: Crystallographic data statistics §5§

   [49]Table 1 - Crystallographic data statistics

t/data/cp1252/10676968.cp1252  view on Meta::CPAN

   as obtained from a structural superimposition of RasGDP (in cyan) with
   the corresponding regions in hGBP1 (purple), highlighting functionally
   important residues necessary for binding and conformational change as
   balls or in ball-and-stick. Whereas Gly 60^ras overlays very well with
   Gly 100^hGBP1, residues D119/D184 and T35/T75 do not.
   [62]High resolution image and legend (79K)

   As GBP is stable in the absence of nucleotide, whereas Ras-like and G
   alpha GTP-binding proteins are not, it was of interest to investigate
   the effect of the absence of nucleotide on the structure. As all
   P-loop-containing proteins^[63]10 bind the beta / gamma -phosphate of

t/data/cp1252/10676968.cp1252  view on Meta::CPAN


   The electrostatic surface potential shows that the highly charged
   regions of the helical and LG domains are masked by an alpha 12/13
   motif, as indicated in the lower panel by showing alpha 12/ alpha 13 in
   worm representation.
   [80]High resolution image and legend (40K)

   Mx and dynamins are commonly grouped into a separate class of large
   GTP-binding proteins^[81]5. Proteins of this family have several
   variations in their domain structure, but they all possess at least a
   'GTPase' domain of approx 300 residues, a 'middle' or 'assembly' domain

t/data/cp1252/10676968.cp1252  view on Meta::CPAN

   a, Concentration dependence of the specific GTPase activity of hGBP1.
   The data were fitted to a model involving dimer formation yielding 0.6
   micro M for the apparent dimerization constant of hGBP1. b,
   Size-exclusion chromatography of GDP dot AlF[x]-, GppNHp-, GDP-bound
   and nucleotide-free hGBP1.
   [88]High resolution image and legend (20K)

   The homology to the dynamin family is further corroborated by
   demonstrating nucleotide-dependent oligomerization ([89]Fig. 4b). The
   elution profiles from standardized analytical size-exclusion
   chromatography show that hGBP1 is monomeric in the absence and in the

 view all matches for this distribution


Excel-Writer-XLSX-CDF

 view release on metacpan or  search on metacpan

lib/Excel/Writer/XLSX/CDF.pm  view on Meta::CPAN

  $self->{'chart_x_min'} = shift if @_;
  $self->{'chart_x_min'} = undef unless exists $self->{'chart_x_min'};
  return $self->{'chart_x_min'};
}

=head2 chart_legend_display

Set and returns the legend display property for the Excel chart

Default: 1

=cut

sub chart_legend_display {
  my $self           = shift;
  $self->{'chart_legend_display'} = shift if @_;
  $self->{'chart_legend_display'} = 1 unless defined $self->{'chart_legend_display'};
  return $self->{'chart_legend_display'};
}

=head2 chart_colors

Set and returns an array reference of Excel color codes to use for each CDF in group order.  The default color once all colors are used is black.

lib/Excel/Writer/XLSX/CDF.pm  view on Meta::CPAN

  my $workbook         = Excel::Writer::XLSX->new($fh);

  #Add a worksheet chart as first tab so it shows when document is opened
  my $chart            = $workbook->add_chart(type=>'scatter', subtype=>'straight');

  #Add worksheet for chart legend groups
  my $worksheet_groups = $workbook->add_worksheet('groups');
  $worksheet_groups->write_string(0, 0, 'Group');
  $worksheet_groups->write_string(0, 1, 'Index');
  $worksheet_groups->write_string(0, 2, 'Count');
  my $group_index      = 0;

  #Colors for data series lines and legend
  my @colors          = @{$self->chart_colors};

  #foreach group add worksheet, data and chart series
  my @stats_groups    = ();

  foreach my $group (@groups) {

    #Add series label for legend
    $group_index++;
    $worksheet_groups->write_string($group_index, 0, $group);
    $worksheet_groups->write_number($group_index, 1, $group_index);

    #Add worksheet

lib/Excel/Writer/XLSX/CDF.pm  view on Meta::CPAN


  #Configure chart
  $chart->set_title( name => $self->chart_title                                  );
  $chart->set_y_axis(name => $self->chart_y_label, min => 0      , max => 1      );
  $chart->set_x_axis(name => $self->chart_x_label, min => $minset, max => $maxset);
  $chart->set_legend(none => 1) unless $self->chart_legend_display;

  #Write Excel output to filehandle
  $workbook->close;

  return $content;

 view all matches for this distribution


Excel-Writer-XLSX

 view release on metacpan or  search on metacpan

examples/chart_clustered.pl  view on Meta::CPAN

);

# Set the Excel chart style.
$chart->set_style( 37 );

# Turn off the legend.
$chart->set_legend( position => 'none' );

# Insert the chart into the worksheet.
$worksheet->insert_chart( 'G3', $chart );

$workbook->close();

 view all matches for this distribution


Expense-Tracker

 view release on metacpan or  search on metacpan

public/assets/css/bootstrap.css  view on Meta::CPAN

  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 27px;
  font-size: 19.5px;

public/assets/css/bootstrap.css  view on Meta::CPAN

  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

legend small {
  font-size: 13.5px;
  color: #999999;
}

label,

public/assets/css/bootstrap.css  view on Meta::CPAN


.control-group {
  margin-bottom: 9px;
}

legend + .control-group {
  margin-top: 18px;
  -webkit-margin-top-collapse: separate;
}

.form-horizontal .control-group {

 view all matches for this distribution


ExtUtils-ModuleMaker

 view release on metacpan or  search on metacpan

lib/ExtUtils/ModuleMaker/Licenses.pm  view on Meta::CPAN

Vovida Networks, Inc. and many individuals on behalf of
Vovida Networks, Inc. For more information on Vovida
Networks, Inc., please see http://www.vovida.org.

All third party licenses and copyright notices and other
required legends also need to be complied with as well.
EOFLICENSETEXT

}

################################################ subroutine header begin ##

 view all matches for this distribution


ExtUtils-SVDmaker

 view release on metacpan or  search on metacpan

t/ExtUtils/SVDmaker/Original.pm  view on Meta::CPAN

#  4. TEST DESCRIPTIONS
#
#
=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD PM Form Database Test Description Fields|Test::STDmaker/STD PM Form Database Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


FIDO-Raw

 view release on metacpan or  search on metacpan

deps/hidapi/doxygen/Doxyfile  view on Meta::CPAN

# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_MULTI_TARGETS      = YES

# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
# explaining the meaning of the various boxes and arrows in the dot generated
# graphs.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.

 view all matches for this distribution


FU

 view release on metacpan or  search on metacpan

FU/XMLWriter.pm  view on Meta::CPAN


my @NORMAL_TAGS = qw/
    a_ abbr_ address_ article_ aside_ audio_ b_ bb_ bdo_ blockquote_ body_
    button_ canvas_ caption_ cite_ code_ colgroup_ datagrid_ datalist_ dd_ del_
    details_ dfn_ dialog_ div_ dl_ dt_ em_ fieldset_ figure_ footer_ form_ h1_
    h2_ h3_ h4_ h5_ h6_ head_ header_ i_ iframe_ ins_ kbd_ label_ legend_ li_
    main_ map_ mark_ menu_ meter_ nav_ noscript_ object_ ol_ optgroup_ option_
    output_ p_ pre_ progress_ q_ rp_ rt_ ruby_ samp_ script_ section_ select_
    small_ span_ strong_ style_ sub_ summary_ sup_ table_ tbody_ td_ textarea_
    tfoot_ th_ thead_ time_ title_ tr_ ul_ var_ video_
/;

FU/XMLWriter.pm  view on Meta::CPAN

following C<tag_()>-like wrapper functions are provided:

    a_ abbr_ address_ article_ aside_ audio_ b_ bb_ bdo_ blockquote_ body_
    button_ canvas_ caption_ cite_ code_ colgroup_ datagrid_ datalist_ dd_ del_
    details_ dfn_ dialog_ div_ dl_ dt_ em_ fieldset_ figure_ footer_ form_ h1_
    h2_ h3_ h4_ h5_ h6_ head_ header_ i_ iframe_ ins_ kbd_ label_ legend_ li_
    main_ map_ mark_ menu_ meter_ nav_ noscript_ object_ ol_ optgroup_ option_
    output_ p_ pre_ progress_ q_ rp_ rt_ ruby_ samp_ script_ section_ select_
    small_ span_ strong_ style_ sub_ summary_ sup_ table_ tbody_ td_ textarea_
    tfoot_ th_ thead_ time_ title_ tr_ ul_ var_ video_

 view all matches for this distribution


Farabi

 view release on metacpan or  search on metacpan

lib/Farabi/files/public/assets/bootstrap/css/bootstrap.min.css  view on Meta::CPAN

 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;wi...

 view all matches for this distribution


Feed-Find

 view release on metacpan or  search on metacpan

t/data/link.html  view on Meta::CPAN

.site-header{background-image:url(https://i2.wp.com/dave.org.uk/wp-content/uploads/2019/04/cropped-IMG_20190124_075821.jpg?resize=2400%2C652&#038;ssl=1);}
.site-title a,.site-title a:visited{color:#ffffff;}.site-title a:hover,.site-title a:visited:hover{color:rgba(255, 255, 255, 0.8);}
.site-description{color:#ffffff;}
.hero,.hero .widget h1,.hero .widget h2,.hero .widget h3,.hero .widget h4,.hero .widget h5,.hero .widget h6,.hero .widget p,.hero .widget blockquote,.hero .widget cite,.hero .widget table,.hero .widget ul,.hero .widget ol,.hero .widget li,.hero .widg...
.main-navigation ul li a,.main-navigation ul li a:visited,.main-navigation ul li a:hover,.main-navigation ul li a:focus,.main-navigation ul li a:visited:hover{color:#ffffff;}.main-navigation .sub-menu .menu-item-has-children > a::after{border-right-c...
h1,h2,h3,h4,h5,h6,label,legend,table th,dl dt,.entry-title,.entry-title a,.entry-title a:visited,.widget-title{color:#4f5875;}.entry-title a:hover,.entry-title a:visited:hover,.entry-title a:focus,.entry-title a:visited:focus,.entry-title a:active,.e...
body,input,select,textarea,input[type="text"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="password"]:focus,input[type="search"]:focus,input[type="number"]:focus,input[type="tel"]:focus,input[type="range"]:focus,input[type="dat...
blockquote,.entry-meta,.entry-footer,.comment-meta .says,.logged-in-as,.wp-block-coblocks-author__heading{color:#888c99;}
.site-footer .widget-title,.site-footer h1,.site-footer h2,.site-footer h3,.site-footer h4,.site-footer h5,.site-footer h6{color:#4f5875;}
.site-footer .widget,.site-footer .widget form label{color:#4f5875;}
.footer-menu ul li a,.footer-menu ul li a:visited{color:#3e4c75;}.site-info-wrapper .social-menu a{background-color:#3e4c75;}.footer-menu ul li a:hover,.footer-menu ul li a:visited:hover{color:rgba(62, 76, 117, 0.8);}

t/data/link.html  view on Meta::CPAN

</style>
<link rel='stylesheet' id='primer-fonts-css'  href='//fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C700&#038;subset=latin&#038;ver=1.8.9' type='text/css' media='all' />
<style id='primer-fonts-inline-css' type='text/css'>
.site-title{font-family:"Open Sans", sans-serif;}
.main-navigation ul li a,.main-navigation ul li a:visited,button,a.button,a.fl-button,input[type="button"],input[type="reset"],input[type="submit"]{font-family:"Open Sans", sans-serif;}
h1,h2,h3,h4,h5,h6,label,legend,table th,dl dt,.entry-title,.widget-title{font-family:"Open Sans", sans-serif;}
body,p,ol li,ul li,dl dd,.fl-callout-text{font-family:"Open Sans", sans-serif;}
blockquote,.entry-meta,.entry-footer,.comment-list li .comment-meta .says,.comment-list li .comment-metadata,.comment-reply-link,#respond .logged-in-as{font-family:"Open Sans", sans-serif;}
</style>
<link rel='stylesheet' id='social-logos-css'  href='//dave.org.uk/wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css?ver=9.8' type='text/css' media='all' />
<link rel='stylesheet' id='jetpack_css-css'  href='//dave.org.uk/wp-content/plugins/jetpack/css/jetpack.css?ver=9.8' type='text/css' media='all' />

 view all matches for this distribution



File-AnySpec

 view release on metacpan or  search on metacpan

t/File/AnySpec.pm  view on Meta::CPAN

#
#

=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD FormDB Test Description Fields|Test::STDmaker/STD FormDB Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


File-Drawing

 view release on metacpan or  search on metacpan

t/File/Drawing.pm  view on Meta::CPAN

#
#

=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD FormDB Test Description Fields|Test::STDmaker/STD FormDB Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


File-HomeDir

 view release on metacpan or  search on metacpan

lib/File/HomeDir.pm  view on Meta::CPAN

address above.

=head1 ACKNOWLEDGEMENTS

The biggest acknowledgement goes to Chris Nandor, who wielded his
legendary Mac-fu and turned my initial fairly ordinary Darwin
implementation into something that actually worked properly everywhere,
and then donated a Mac OS X license to allow it to be maintained properly.

=head1 AUTHORS

 view all matches for this distribution


File-Maker

 view release on metacpan or  search on metacpan

t/File/Maker.pm  view on Meta::CPAN

#
#

=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD FormDB Test Description Fields|Test::STDmaker/STD FormDB Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


File-PM2File

 view release on metacpan or  search on metacpan

t/File/PM2File.pm  view on Meta::CPAN

#
#

=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD FormDB Test Description Fields|Test::STDmaker/STD FormDB Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


File-Package

 view release on metacpan or  search on metacpan

t/File/Package.pm  view on Meta::CPAN

#
#

=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD FormDB Test Description Fields|Test::STDmaker/STD FormDB Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


File-Revision

 view release on metacpan or  search on metacpan

t/File/Revision.pm  view on Meta::CPAN

#
#

=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD FormDB Test Description Fields|Test::STDmaker/STD FormDB Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


File-Slurp

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

9999.14      2011-03-20
    - Added LICENCE (same as perl) to POD
    - Added special faster code to slurp in small text files which
      is a common case
    - Rewrote the extras/slurp_bench.pl script. It has a full
      legend, better CLI options, size is selectable, benchmark
      entries have more consistant names and it compares the new
      fast slurp for small files to the general slurp code.
      Thanks to Mark Friendlich
    - Cleaned up pod
    - Added more Synopsis examples

 view all matches for this distribution


File-SmartNL

 view release on metacpan or  search on metacpan

t/File/SmartNL.pm  view on Meta::CPAN

#
#

=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD FormDB Test Description Fields|Test::STDmaker/STD FormDB Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


File-SubPM

 view release on metacpan or  search on metacpan

t/File/SubPM.pm  view on Meta::CPAN

#
#

=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD FormDB Test Description Fields|Test::STDmaker/STD FormDB Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


File-Where

 view release on metacpan or  search on metacpan

t/File/Where.pm  view on Meta::CPAN

#
#

=head1 TEST DESCRIPTIONS

The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD FormDB Test Description Fields|Test::STDmaker/STD FormDB Test Description Fields>.

=head2 Test Plan

 view all matches for this distribution


Finance-Bank-Bankwest

 view release on metacpan or  search on metacpan

t/fixtures/google.html  view on Meta::CPAN

(function(){try{var a=window.gbar;a.mcf("pm",{p:"2469003,Jb_,7,,"});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
(function(){try{var a=window.gbar;a.mcf("mm",{s:"1"});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
(function(){try{var d=window.gbar.i.i;var e=window.gbar;var f=e.i;var g=f.c("1",0),h=/\bgbmt\b/,k=function(a){try{var b=document.getElementById("gb_"+g),c=document.getElementById("gb_"+a);b&&f.l(b,h.test(b.className)?"gbm0l":"gbz0l");c&&f.k(c,h.test(...
n(a)},q=function(){if(window.google&&window.google.sn){var a=/.*hp$/;return a.test(window.google.sn)?"":"1"}return"-1"};e.rp=q;e.slp=k;e.qs=p;e.qsi=n;}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
(function(){try{window.gbar.rdl();}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
</script> </head><body class="hp" onload="try{if(!google.j.b){document.f&amp;&amp;document.f.q.focus();document.gbqf&amp;&amp;document.gbqf.q.focus();}}catch(e){}if(document.images)new Image().src='/images/nav_logo117.png'" dir="ltr" alink="#dd4b39" ...
var _coarr = eval('(' + _co + ')');google.j[1]={cc:[],co:_coarr,bl:['mngb','gb_'],funcs:[
{'n':'pcs','i':'gstyle','css':document.getElementById('gstyle').innerHTML,'is':'','r':true,'sc':true},{'n':'pc','i':'cst','h':document.getElementById('cst').innerHTML,'is':'','r':true,'sc':true},{'n':'pc','i':'main','h':_mstr,'is':'','r':true,'sc':tr...
};})();</script><script data-url="/extern_chrome/1cfbda40ed967628.js?bav=or.r_qf" id="ecs">function wgjp(){var xjs=document.createElement('script');xjs.src=document.getElementById('ecs').getAttribute('data-url');(document.getElementById('xjsd')|| doc...
if(!google.xjs){google.dstr=[];google.rein=[];window._=window._||{};window._._DumpException=function(e){throw e};if(google.timers&&google.timers.load.t){google.timers.load.t.xjsls=new Date().getTime();}google.dljp('/xjs/_/js/s/c,sb,cr,cdos,vm,tbui,mb...
function n(b,f,m){m=b.offsetHeight?m-b.offsetHeight:m;f-=m;f=Math.max(f,0);b.style.height=f+"px";return f}

 view all matches for this distribution


Finance-Bank-IE

 view release on metacpan or  search on metacpan

data/BankOfIreland/accountSummary_execution=e2s1  view on Meta::CPAN

				<div class="qt_header"><br class="break" />
					<h2>Quick Transfer</h2><a id="form:quickTransferSubview:addPayee" href="#" onclick="if(typeof jsfcljs == 'function'){jsfcljs(document.getElementById('form'),{'form:quickTransferSubview:addPayee':'form:quickTransferSubview:addPayee'},'');}return ...
					<br class="clear" />
				</div>
				<fieldset>
					<legend class="hidden_label">Quick Transfer</legend>
					<div class="">
	                              
						<label for="form:quickTransferSubview:quickTransferAccountDropDown" class="hidden_label">From Account1</label> 
						<!-- 
							- Custom account drop down for quick transfer

 view all matches for this distribution


Finance-Bank-Postbank_de

 view release on metacpan or  search on metacpan

t/02-maintenance.html  view on Meta::CPAN

		<div class="main">
			<div class="formHeadline" style="width:7em"><img src="/iob3/common/images/icon_hinweis.gif" width="15" height="15" alt="" />&nbsp;Fehler</div>
			<div class="formcontainer">
				<form action="" method="post">
				<fieldset class="fieldset">
				<legend class="legend">Postbank <span lang="en">Online-Banking</span></legend>

				<p class="pFormcontainer">
                        Sehr geehrter <span lang="en">Online-Banking</span>  Nutzer,
                        wegen einer hohen Auslastung kommt es derzeit im Online-Banking zu
                        l&auml;ngeren Wartezeiten.

 view all matches for this distribution


Finance-ChartHist

 view release on metacpan or  search on metacpan

lib/Finance/ChartHist.pm  view on Meta::CPAN

  }
  unshift @formated_data, $graph_data->{$self->{symbols}[0]}[0];

  $graph->plot(\@formated_data) or die $graph->error;
  
  ## Set the legend
  $graph->set_legend( ["BHP", "PIXR"] );

  ## Keep a copy of the graph  
  $self->{graph} = $graph;
  
}

 view all matches for this distribution


Finance-CompanyNames

 view release on metacpan or  search on metacpan

CompanyNames/TextSupport.pm  view on Meta::CPAN

legal legalism legalities legality legalization legalize legalized legalizers legalizes legalizing legally
legalisation legalise legalised legalising
legatee legatees
legation legations
legband legbanding legbands
legend legended legending legends
legget leggett
legibility legible legibly
legion legions
legionella legionellae
legionnaire legionnaires

CompanyNames/TextSupport.pm  view on Meta::CPAN

legalize
legalized
legalizes
legalizing
legally
legend
legendary
legends
legged
leggings
legibility
legible
legibly

 view all matches for this distribution


Finance-Currency-Convert-BI

 view release on metacpan or  search on metacpan

t/data/kurs-transaksi-bi-2022-02-25.html  view on Meta::CPAN


        var myLineChart = new Chart(ctx, {
            type: 'line',
            data: data,
            options: {
                legend: {
                    display: false,
                    labels: {
                        display: false
                    }
                },

 view all matches for this distribution


Finance-Quant

 view release on metacpan or  search on metacpan

lib/Finance/Quant.pm  view on Meta::CPAN


	}
	
	sub plotlines {
		my ($file, $stock, $x, $lines, $y_format) = @_;
		my @legend;
		my ($data, $colors) = ([], []);
		
		$data->[0] = $x;   # x-axis labels
	
		for (0..$#{$lines}) {
			$data->[(1+$_)] = $lines->[$_]->{data};
			$colors->[$_] = $lines->[$_]->{color};
			$legend[$_] = $lines->[$_]->{name};
		}
	
		my $graph = GD::Graph::lines->new(740,420);
		$graph->set (dclrs => $colors) or warn $graph->error;
		$graph->set_legend(@legend) or warn $graph->error;
		$graph->set (legend_placement => 'BC') or warn $graph->error;
		$graph->set(y_number_format => $y_format) if $y_format;
		$graph->set (
			title => "stock: $stock",
			boxclr => 'black',
			bgclr => 'dgray',
			axislabelclr => 'white',
			legendclr => 'white',
			textclr => 'white',
			r_margin => 20,
			tick_length => -4,
			y_long_ticks => 1,
			axis_space => 10,

 view all matches for this distribution


( run in 0.904 second using v1.01-cache-2.11-cpan-49f99fa48dc )