Removed useless directories - BT#2724

skala
ywarnier 14 years ago
parent 72035c9ca5
commit 84acce7b1c
  1. 43
      main/inc/lib/phpdocx/examples/easy/Chart.php
  2. 26
      main/inc/lib/phpdocx/examples/easy/Footer.php
  3. 28
      main/inc/lib/phpdocx/examples/easy/Header.php
  4. 34
      main/inc/lib/phpdocx/examples/easy/Image.php
  5. 37
      main/inc/lib/phpdocx/examples/easy/Language.php
  6. 22
      main/inc/lib/phpdocx/examples/easy/Link.php
  7. 34
      main/inc/lib/phpdocx/examples/easy/List.php
  8. 28
      main/inc/lib/phpdocx/examples/easy/Math.php
  9. 39
      main/inc/lib/phpdocx/examples/easy/Page.php
  10. 44
      main/inc/lib/phpdocx/examples/easy/PageBreak.php
  11. 39
      main/inc/lib/phpdocx/examples/easy/Table.php
  12. 22
      main/inc/lib/phpdocx/examples/easy/TableContents.php
  13. 35
      main/inc/lib/phpdocx/examples/easy/Text.php
  14. 29
      main/inc/lib/phpdocx/examples/easy/Title.php
  15. 22
      main/inc/lib/phpdocx/examples/easy/createHTML.php
  16. 20
      main/inc/lib/phpdocx/examples/easy/createPDF.php
  17. BIN
      main/inc/lib/phpdocx/examples/easy/example_page.docx
  18. BIN
      main/inc/lib/phpdocx/examples/files/Text.docx
  19. BIN
      main/inc/lib/phpdocx/examples/files/img/image.png
  20. BIN
      main/inc/lib/phpdocx/examples/files/img/logo_phpdocx.gif
  21. BIN
      main/inc/lib/phpdocx/examples/files/math.docx
  22. 58
      main/inc/lib/phpdocx/examples/intermediate/Chart.php
  23. 43
      main/inc/lib/phpdocx/examples/intermediate/HeaderAndFooter.php
  24. 2
      main/inc/lib/phpdocx/excel/[Content_Types].xml
  25. 2
      main/inc/lib/phpdocx/excel/_rels/.rels
  26. 2
      main/inc/lib/phpdocx/excel/docProps/app.xml
  27. 2
      main/inc/lib/phpdocx/excel/docProps/core.xml
  28. BIN
      main/inc/lib/phpdocx/excel/excel.xlsx
  29. 2
      main/inc/lib/phpdocx/excel/xl/_rels/workbook.xml.rels
  30. BIN
      main/inc/lib/phpdocx/excel/xl/printerSettings/printerSettings1.bin
  31. 2
      main/inc/lib/phpdocx/excel/xl/sharedStrings.xml
  32. 2
      main/inc/lib/phpdocx/excel/xl/styles.xml
  33. 2
      main/inc/lib/phpdocx/excel/xl/tables/table1.xml
  34. 2
      main/inc/lib/phpdocx/excel/xl/theme/theme1.xml
  35. 2
      main/inc/lib/phpdocx/excel/xl/workbook.xml
  36. 2
      main/inc/lib/phpdocx/excel/xl/worksheets/_rels/sheet1.xml.rels
  37. 2
      main/inc/lib/phpdocx/excel/xl/worksheets/sheet1.xml

@ -1,43 +0,0 @@
<?php
/**
* Create a DOCX file. Chart example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$legends = array(
'legend1' => array(10, 11, 12),
'legend2' => array(0, 1, 2),
'legend3' => array(40, 41, 42)
);
$paramsChart = array(
'data' => $legends,
'type' => 'pieChart',
'title' => 'Title',
'cornerX' => 20,
'cornerY' => 20,
'cornerP' => 30,
'color' => 2,
'textWrap' => 0,
'sizeX' => 10,
'sizeY' => 10,
'jc' => 'right',
'showPercent' => 1,
'font' => 'Times New Roman'
);
$docx->addGraphic($paramsChart);
$docx->createDocx('example_chart');

@ -1,26 +0,0 @@
<?php
/**
* Create a DOCX file. Footer example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$paramsFooter = array(
'font' => 'Times New Roman'
);
$docx->addFooter('Footer. Times New Roman font', $paramsFooter);
$docx->createDocx('example_footer');

@ -1,28 +0,0 @@
<?php
/**
* Create a DOCX file. Header
*
* @category Phpdocx
* @package examples
* @subpackage intermediate
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$paramsHeader = array(
'font' => 'Times New Roman',
'jc' => 'right',
'textWrap' => 5,
);
$docx->addHeader('Header text', $paramsHeader);
$docx->createDocx('example_header');

@ -1,34 +0,0 @@
<?php
/**
* Create a DOCX file. Image example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$paramsImg = array(
'name' => '../files/img/image.png',
'scaling' => 50,
'spacingTop' => 100,
'spacingBottom' => 0,
'spacingLeft' => 100,
'spacingRight' => 0,
'textWrap' => 1,
'border' => 1,
'borderDiscontinuous' => 1
);
$docx->addImage($paramsImg);
$docx->createDocx('example_image');

@ -1,37 +0,0 @@
<?php
/**
* Create a DOCX file. Text example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license http://www.phpdocx.com/wp-content/themes/lightword/pro_license.php
* @version 2.1
* @link http://www.phpdocx.com
* @since File available since Release 2.1
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$text = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' .
'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut ' .
'enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut' .
'aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit ' .
'in voluptate velit esse cillum dolore eu fugiat nulla pariatur. ' .
'Excepteur sint occaecat cupidatat non proident, sunt in culpa qui ' .
'officia deserunt mollit anim id est laborum.';
$paramsText = array(
'b' => 'single',
'font' => 'Arial'
);
$docx->addText($text, $paramsText);
$docx->setLanguage('es_ES');
$docx->createDocx('example_language');

@ -1,22 +0,0 @@
<?php
/**
* Create a DOCX file. Link example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$docx->addLink('Link to Google', 'http://www.google.es', 'Arial');
$docx->createDocx('example_link');

@ -1,34 +0,0 @@
<?php
/**
* Create a DOCX file. List example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$valuesList = array(
'Line 1',
'Line 2',
'Line 3',
'Line 4',
'Line 5'
);
$paramsList = array(
'val' => 1
);
$docx->addList($valuesList, $paramsList);
$docx->createDocx('example_list');

@ -1,28 +0,0 @@
<?php
/**
* Create a DOCX file. List example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$docx->addMathEq(
'<m:oMathPara>
<m:oMath><m:r><m:t>∪±∞=~×</m:t></m:r></m:oMath>
</m:oMathPara>'
);
$docx->addMathDocx('../files/math.docx');
$docx->createDocx('example_math');

@ -1,39 +0,0 @@
<?php
/**
* Create a DOCX file. Page example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$text = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' .
'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut ' .
'enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut' .
'aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit ' .
'in voluptate velit esse cillum dolore eu fugiat nulla pariatur. ' .
'Excepteur sint occaecat cupidatat non proident, sunt in culpa qui ' .
'officia deserunt mollit anim id est laborum.';
$docx->addText($text);
$paramsPage = array(
'titlePage' => 1,
'orient' => 'normal',
'top' => 4000,
'bottom' => 4000,
'right' => 4000,
'left' => 4000
);
$docx->createDocx('example_page', $paramsPage);

@ -1,44 +0,0 @@
<?php
/**
* Create a DOCX file. Page break example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$text = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' .
'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut ' .
'enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut' .
'aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit ' .
'in voluptate velit esse cillum dolore eu fugiat nulla pariatur. ' .
'Excepteur sint occaecat cupidatat non proident, sunt in culpa qui ' .
'officia deserunt mollit anim id est laborum.';
$docx->addText($text);
$docx->addBreak('line');
$docx->addText($text);
$docx->addBreak('line');
$docx->addBreak('line');
$docx->addText($text);
$docx->addBreak('page');
$docx->addText($text);
$docx->createDocx('example_pagebreak');

@ -1,39 +0,0 @@
<?php
/**
* Create a DOCX file. Table example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$valuesTable = array(
array(
11,
12
),
array(
21,
22
),
);
$paramsTable = array(
'border' => 'single',
'border_sz' => 20
);
$docx->addTable($valuesTable, $paramsTable);
$docx->createDocx('example_table');

@ -1,22 +0,0 @@
<?php
/**
* Create a DOCX file. Table of contents example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$objDocx = new CreateDocx();
$objDocx->addTableContents('Arial');
$objDocx->createDocx('example_tablecontents');

@ -1,35 +0,0 @@
<?php
/**
* Create a DOCX file. Text example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$text = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' .
'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut ' .
'enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut' .
'aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit ' .
'in voluptate velit esse cillum dolore eu fugiat nulla pariatur. ' .
'Excepteur sint occaecat cupidatat non proident, sunt in culpa qui ' .
'officia deserunt mollit anim id est laborum.';
$paramsText = array(
'b' => 'single',
'font' => 'Arial'
);
$docx->addText($text, $paramsText);
$docx->createDocx('example_text');

@ -1,29 +0,0 @@
<?php
/**
* Create a DOCX file. Title example
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$paramsTitle = array(
'val' => 1,
'u' => 'single',
'font' => 'Blackadder ITC',
'sz' => 22
);
$docx->addTitle('Lorem ipsum dolor sit amet.', $paramsTitle);
$docx->createDocx('example_title');

@ -1,22 +0,0 @@
<?php
/**
* Create a DOCX file. Transform DOCX to HTML
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/TransformDoc.inc';
$document = new TransformDoc();
$document->setStrFile('../files/Text.docx');
$document->generateXHTML();
$document->validatorXHTML();
echo $document->getStrXHTML();

@ -1,20 +0,0 @@
<?php
/**
* Create a DOCX file. Transform DOCX to PDF
*
* @category Phpdocx
* @package examples
* @subpackage easy
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/TransformDoc.inc';
$document = new TransformDoc();
$document->setStrFile('../files/Text.docx');
$document->generatePDF();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.7 KiB

@ -1,58 +0,0 @@
<?php
/**
* Create a DOCX file. Two charts in the same DOCX
*
* @category Phpdocx
* @package examples
* @subpackage intermediate
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$legends = array(
'legend1' => array(10, 11, 12),
'legend2' => array(0, 1, 2),
'legend3' => array(40, 41, 42)
);
$args = array(
'data' => $legends,
'type' => 'pie3DChart',
'title' => 'Title first chart',
'cornerX' => 20, 'cornerY' => 20, 'cornerP' => 30,
'color' => 2,
'textWrap' => 0,
'sizeX' => 10, 'sizeY' => 10,
'jc' => 'left',
'showPercent' => 1,
'font' => 'Times New Roman'
);
$docx->addGraphic($args);
$legends = array(
'0' => array('sequence 1', 'sequence 2', 'sequence 3'),
'Category 1' => array(9.3, 2.4, 2),
'Category 2' => array(2.5, 4.4, 1),
'Category 3' => array(3.5, 1.8, 0.5),
'Category 4' => array(1.5, 8, 1)
);
$args = array(
'data' => $legends,
'type' => 'colChart',
'title' => 'Title second chart',
'color' => 2,
'textWrap' => 0,
'sizeX' => 17, 'sizeY' => 7,
'jc' => 'center',
'font' => 'Arial'
);
$docx->addGraphic($args);
$docx->createDocx('example_chart');

@ -1,43 +0,0 @@
<?php
/**
* Create a DOCX file. Header and footer with font styles
*
* @category Phpdocx
* @package examples
* @subpackage intermediate
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
* (http://www.2mdc.com)
* @license LGPL
* @version 2.0
* @link http://www.phpdocx.com
* @since File available since Release 2.0
*/
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$paramsHeader = array(
'name' => '../files/img/image.png',
'jc' => 'right',
'textWrap' => 5,
'font' => 'Arial'
);
$docx->addHeader('Header Arial', $paramsHeader);
$paramsHeader = array(
'font' => 'Times New Roman'
);
$docx->addHeader('Header Times New Roman', $paramsHeader);
$paramsFooter = array(
'pager' => 'true',
'pagerAlignment' => 'center',
'font' => 'Arial'
);
$docx->addFooter('Footer Arial', $paramsFooter);
$docx->createDocx('example_header_and_footer');

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Override PartName="/xl/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/><Override PartName="/xl/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"/><Override PartName="/xl/tables/table1.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml"/><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/><Default Extension="xml" ContentType="application/xml"/><Override PartName="/xl/workbook.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"/><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/><Override PartName="/xl/worksheets/sheet1.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/><Override PartName="/xl/sharedStrings.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"/><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/></Types>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml"/></Relationships>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><Application>Microsoft Excel</Application><DocSecurity>0</DocSecurity><ScaleCrop>false</ScaleCrop><HeadingPairs><vt:vector size="2" baseType="variant"><vt:variant><vt:lpstr>Hojas de cálculo</vt:lpstr></vt:variant><vt:variant><vt:i4>1</vt:i4></vt:variant></vt:vector></HeadingPairs><TitlesOfParts><vt:vector size="1" baseType="lpstr"><vt:lpstr>Hoja1</vt:lpstr></vt:vector></TitlesOfParts><Company></Company><LinksUpToDate>false</LinksUpToDate><SharedDoc>false</SharedDoc><HyperlinksChanged>false</HyperlinksChanged><AppVersion>12.0000</AppVersion></Properties>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:creator>usuario</dc:creator><cp:lastModifiedBy>usuario</cp:lastModifiedBy><dcterms:created xsi:type="dcterms:W3CDTF">2009-05-05T07:58:26Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2009-05-05T07:58:30Z</dcterms:modified></cp:coreProperties>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet1.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings" Target="sharedStrings.xml"/></Relationships>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="7" uniqueCount="7"><si><t>Ventas</t></si><si><t>1er trim.</t></si><si><t>2º trim.</t></si><si><t>3er trim.</t></si><si><t>4º trim.</t></si><si><t xml:space="preserve"> </t></si><si><t>Para cambiar el tamaño del rango de datos del gráfico, arrastre la esquina inferior derecha del rango.</t></si></sst>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<styleSheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"><fonts count="2"><font><sz val="11"/><color theme="1"/><name val="Calibri"/><family val="2"/><scheme val="minor"/></font><font><b/><sz val="10"/><color theme="1"/><name val="Verdana"/><family val="2"/></font></fonts><fills count="2"><fill><patternFill patternType="none"/></fill><fill><patternFill patternType="gray125"/></fill></fills><borders count="1"><border><left/><right/><top/><bottom/><diagonal/></border></borders><cellStyleXfs count="1"><xf numFmtId="0" fontId="0" fillId="0" borderId="0"/></cellStyleXfs><cellXfs count="3"><xf numFmtId="0" fontId="0" fillId="0" borderId="0" xfId="0"/><xf numFmtId="0" fontId="0" fillId="0" borderId="0" xfId="0" applyBorder="1"/><xf numFmtId="0" fontId="1" fillId="0" borderId="0" xfId="0" applyFont="1"/></cellXfs><cellStyles count="1"><cellStyle name="Normal" xfId="0" builtinId="0"/></cellStyles><dxfs count="1"><dxf><border diagonalUp="0" diagonalDown="0"><left style="thin"><color indexed="12"/></left><right style="thin"><color indexed="12"/></right><top style="thin"><color indexed="12"/></top><bottom style="thin"><color indexed="12"/></bottom></border></dxf></dxfs><tableStyles count="0" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16"/></styleSheet>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<table xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" id="1" name="Tabla1" displayName="Tabla1" ref="A1:B5" totalsRowShown="0" tableBorderDxfId="0"><tableColumns count="2"><tableColumn id="1" name=" "/><tableColumn id="2" name="Ventas"/></tableColumns><tableStyleInfo showFirstColumn="0" showLastColumn="0" showRowStripes="1" showColumnStripes="0"/></table>

File diff suppressed because one or more lines are too long

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"><fileVersion appName="xl" lastEdited="4" lowestEdited="4" rupBuild="4506"/><workbookPr defaultThemeVersion="124226"/><bookViews><workbookView xWindow="240" yWindow="135" windowWidth="24720" windowHeight="15150"/></bookViews><sheets><sheet name="Hoja1" sheetId="1" r:id="rId1"/></sheets><calcPr calcId="125725"/><fileRecoveryPr repairLoad="1"/></workbook>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/table" Target="../tables/table1.xml"/></Relationships>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"><dimension ref="A1:B8"/><sheetViews><sheetView tabSelected="1" workbookViewId="0"><selection activeCell="A6" sqref="A6"/></sheetView></sheetViews><sheetFormatPr baseColWidth="10" defaultRowHeight="15"/><cols><col min="1" max="1" width="11.85546875" customWidth="1"/></cols><sheetData><row r="1" spans="1:2"><c r="A1" s="1" t="s"><v>5</v></c><c r="B1" s="1" t="s"><v>0</v></c></row><row r="2" spans="1:2"><c r="A2" s="1" t="s"><v>1</v></c><c r="B2" s="1"><v>8.1999999999999993</v></c></row><row r="3" spans="1:2"><c r="A3" s="1" t="s"><v>2</v></c><c r="B3" s="1"><v>3.2</v></c></row><row r="4" spans="1:2"><c r="A4" s="1" t="s"><v>3</v></c><c r="B4" s="1"><v>1.4</v></c></row><row r="5" spans="1:2"><c r="A5" s="1" t="s"><v>4</v></c><c r="B5" s="1"><v>1.2</v></c></row><row r="8" spans="1:2"><c r="B8" t="s"><v>6</v></c></row></sheetData><pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/><tableParts count="1"><tablePart r:id="rId1"/></tableParts></worksheet>
Loading…
Cancel
Save