The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:Excel-Writer-XLSX Excel::Writer::XLSX"

Excel::Writer::XLSX - Create a new file in the Excel 2007+ XLSX format. River stage two • 27 direct dependents • 34 total dependents

The "Excel::Writer::XLSX" module can be used to create an Excel file in the 2007+ XLSX format. Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, and formulas can be written to the cells....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Chart - A class for writing Excel Charts. River stage two • 27 direct dependents • 34 total dependents

The "Chart" module is an abstract base class for modules that implement charts in Excel::Writer::XLSX. The information below is applicable to all of the available subclasses. The "Chart" module isn't used directly. A chart object is created via the W...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Shape - A class for creating Excel Drawing shapes River stage two • 27 direct dependents • 34 total dependents

The "Excel::Writer::XLSX::Shape" module is used to create Shape objects for Excel::Writer::XLSX. A Shape object is created via the Workbook "add_shape()" method: my $shape_rect = $workbook->add_shape( type => 'rect' ); Once the object is created it c...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Format - A class for defining Excel formatting. River stage two • 27 direct dependents • 34 total dependents

This module is used in conjunction with Excel::Writer::XLSX....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Drawing - A class for writing the Excel XLSX drawing.xml file. River stage two • 27 direct dependents • 34 total dependents

This module is used in conjunction with Excel::Writer::XLSX....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Utility - Helper functions for Excel::Writer::XLSX. River stage two • 27 direct dependents • 34 total dependents

This module provides a set of functions to help with some common tasks encountered when using the Excel::Writer::XLSX module. The two main categories of function are: Row and column functions: these are used to deal with Excel's A1 representation of ...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Workbook - A class for writing Excel Workbooks. River stage two • 27 direct dependents • 34 total dependents

This module is used in conjunction with Excel::Writer::XLSX....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Examples - Excel::Writer::XLSX example programs. River stage two • 27 direct dependents • 34 total dependents

This is a documentation only module showing the examples that are included in the Excel::Writer::XLSX distribution. This file was auto-generated via the gen_examples_pod.pl program that is also included in the examples directory....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Worksheet - A class for writing Excel Worksheets. River stage two • 27 direct dependents • 34 total dependents

This module is used in conjunction with Excel::Writer::XLSX....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Chartsheet - A class for writing the Excel XLSX Chartsheet files. River stage two • 27 direct dependents • 34 total dependents

This module is used in conjunction with Excel::Writer::XLSX....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Chart::Pie - A class for writing Excel Pie charts. River stage two • 27 direct dependents • 34 total dependents

This module implements Pie charts for Excel::Writer::XLSX. The chart object is created via the Workbook "add_chart()" method: my $chart = $workbook->add_chart( type => 'pie' ); Once the object is created it can be configured via the following methods...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Chart::Bar - A class for writing Excel Bar charts. River stage two • 27 direct dependents • 34 total dependents

This module implements Bar charts for Excel::Writer::XLSX. The chart object is created via the Workbook "add_chart()" method: my $chart = $workbook->add_chart( type => 'bar' ); Once the object is created it can be configured via the following methods...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Chart::Area - A class for writing Excel Area charts. River stage two • 27 direct dependents • 34 total dependents

This module implements Area charts for Excel::Writer::XLSX. The chart object is created via the Workbook "add_chart()" method: my $chart = $workbook->add_chart( type => 'area' ); Once the object is created it can be configured via the following metho...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Chart::Line - A class for writing Excel Line charts. River stage two • 27 direct dependents • 34 total dependents

This module implements Line charts for Excel::Writer::XLSX. The chart object is created via the Workbook "add_chart()" method: my $chart = $workbook->add_chart( type => 'line' ); Once the object is created it can be configured via the following metho...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Chart::Radar - A class for writing Excel Radar charts. River stage two • 27 direct dependents • 34 total dependents

This module implements Radar charts for Excel::Writer::XLSX. The chart object is created via the Workbook "add_chart()" method: my $chart = $workbook->add_chart( type => 'radar' ); Once the object is created it can be configured via the following met...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Chart::Stock - A class for writing Excel Stock charts. River stage two • 27 direct dependents • 34 total dependents

This module implements Stock charts for Excel::Writer::XLSX. The chart object is created via the Workbook "add_chart()" method: my $chart = $workbook->add_chart( type => 'stock' ); Once the object is created it can be configured via the following met...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Package::App - A class for writing the Excel XLSX app.xml file. River stage two • 27 direct dependents • 34 total dependents

This module is used in conjunction with Excel::Writer::XLSX....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Package::VML - A class for writing the Excel XLSX VML files. River stage two • 27 direct dependents • 34 total dependents

This module is used in conjunction with Excel::Writer::XLSX....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Chart::Column - A class for writing Excel Column charts. River stage two • 27 direct dependents • 34 total dependents

This module implements Column charts for Excel::Writer::XLSX. The chart object is created via the Workbook "add_chart()" method: my $chart = $workbook->add_chart( type => 'column' ); Once the object is created it can be configured via the following m...

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC

Excel::Writer::XLSX::Package::Core - A class for writing the Excel XLSX core.xml file. River stage two • 27 direct dependents • 34 total dependents

This module is used in conjunction with Excel::Writer::XLSX....

JMCNAMARA/Excel-Writer-XLSX-1.12 - 26 Feb 2024 18:25:58 UTC
38 results (0.066 seconds)