New Post: format minimum and maximum value for Y-axis
Okay, fine. Is there any way I PDER limit, in my y-axis, the following situation: Start with 9 instead of 0 and ending with 19 at intervals of 2? For example: Â Â Â Â Â Â Y Â Â 19 | Â Â 17 | Â Â 15 | Â Â 13 |...
View ArticleNew Post: Generating Excel Files give a PHP error
Hi, I have this error when I try to generate a Excel File. 2014/04/25 12:50:08 [error] [php] realpath() [<a href='function.realpath'>function.realpath</a>]: SAFE MODE Restriction in effect....
View ArticleNew Post: Generating Excel Files give a PHP error
Use upload-directory when defined to allow running on environments having very restricted open_basedir configs PHPExcel_Shared_File::setUseUploadTempDirectory(true);
View ArticleNew Post: Generating Excel Files give a PHP error
Well, Thanks Mark!. I added that line and changed some permission on the "/tmp" folder ... sudenly it works. what is strange to me is that PHPExcel_Shared_Filedoesn't have the method...
View ArticleNew Post: Multiple image
i was create multiple image but only one image can view. this my code $objDrawing = new PHPExcel_Worksheet_Drawing(); $objDrawing->setName("name"); $objDrawing->setDescription("Description");...
View ArticleNew Post: HTML output contains incorrect values
Dear gremki, you made my day! I've been struggling with this for about a week. Just rolled back from 1.8.0 to 1.7.8 and HTML is now filled with all values properly! Thank you very much! I believe this...
View ArticleNew Post: solution for numbers stored as text
harshshahi wrote: I have included AdvancedValueBinder.php PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); in my code and it is working fine for all :) except number format...
View ArticleNew Post: Problem to fill cell whith a text value
MarkBaker wrote: There are days when I wonder why I bother writing...
View ArticleNew Post: Slow Report Generation
I have a report with roughly 1000 rows and 27 columns of data that takes around 45 minutes to generate. I originally thought the slowness could be due to the MySQL query, but I cleaned it up and it's...
View ArticleNew Post: Slow Report Generation
for($y=0; $y<=max($years_purch,$years_inv); $y++) { if($y<$years_purch) { $sheet->SetCellValue($letter.$i, trim($row['FY'.$FYpurch[$y].'purchdemand']));...
View ArticleNew Post: PHPExcel bar and pie chart possibility
I used PHPExcel to generate chart i done that for generating of bar chart, so now what i want to do is to generate pie chart with the bar (column) chart. For example my bar chart display total student...
View ArticleNew Post: Compatibility with Excel 2013 / Online and Offline
Hi, PHP and PHPExcel setup: OS: OSX Maverick Development (Production Ubuntu 12.04) PHP: 5.4.24 PHPExcel version: 1.7.9, 2013-06-02 We use PHPExcel to generate reports with graphs. Most of the graphs...
View ArticleNew Post: Using APCU with PHPExcel on PHP5.5
Hi, I have heard that APCU is backward compatible with APC cache. I am using PHP 5.5, thus it seems the viable caching method for userland. When I set the cache method, having activated apcu in my ini...
View ArticleNew Post: How to create line charte on the basis of percentage using phpexcel
As i want Y axises label start from 30% to 100%. and i am trying using below array but m not getting correct output. is it right way to adding percentage in array. e:g $dataArray=array( array('Q3',...
View ArticleNew Post: How to create line charte on the basis of percentage using phpexcel
Charts don't work with strings: and a % sign means that this is a string. Don't store a % as part of the value; store simply the numeric value.
View ArticleNew Post: Display row if cell contain a specific number
I have a xlsx file with many rows and colums.. I want to I implement a script write the row only if, in this row, a cell contain a specific number es. 1 Can you help me ?
View ArticleNew Post: How to create line charts on the basis of percentage using phpexcel
I need below values as it in excel sheet each cells can u please assist me? And for Y axises label start from 30% to 100% in line chart. Q3 Mar Apr May Jun Jul Aug Sep Oct Nov Dec Jan Feb CY(%) 74.9%...
View ArticleNew Post: How to create line charts on the basis of percentage using phpexcel
I don't know where your data is coming from, but your Excel sheet needs to use format masking to show percentages, not to use a % as part of a string value. The cell values should be straight numeric...
View ArticleNew Post: How to create line charts on the basis of percentage using phpexcel
actually currently i was added dummy values. and now i am trying to add multi tab sheet means want to set title for each sheet and when i adding the title like:...
View ArticleNew Post: A few questions about performance of phpexcel
I wrote a code to extract certain fields from a csv file but the problem is that in terms on performance its is a big fail. It takes about 2-4 minutes to process a 9MB csv file that has about 100000...
View Article