true, in a tab is not possible, to have 3 charts in a row. i did make 3 in a row without tabs which was no problem with "col-md-4" between each of them.
hi, in the list page properties you can change the RecordLimit (SQL Limit Count Statement) to anything , like for example to 10000 but the point is that after that having done, you will have to scroll all the way down to see the export button to click on it.
hi, i did what you asked, no problem. you add one tab and inside that tab you add a chart. then after you copy component of the tab with right botton of your mouse and after paste component. so you have 2 tabs with chart inside. ofcourse after you can copy tab again to add more tabs.
I added some lines in the XLSXWriter.php file , when you have more than one excel output file and ofcourse the columns have diferent sizes, so used the switch case, to switch depending on the $sheet_name variable. Below the changes in the writeSheetHeader function :
switch ($sheet_name) {
case 'Tareas': $col_widths = isset($col_options['widths']) ? (array)$col_options['widths'] : array(10,20,25,25,25,11,25,25,25,11,25,9,50,10); break;
case 'Ingresos': $col_widths = isset($col_options['widths']) ? (array)$col_options['widths'] : array(15,10,13,17,12,11,25,22,15,50); break;
Tx Willvin, Sorry, but I was looking for the xls output and not the csv output. Anyway I found it where to change , in the libs dir the file XLSXWriter.php contains the settings for the xls output:
In the writeSheetHeader function
line 223: $col_widths = isset($col_options['widths']) ? (array)$col_options['widths'] : array(); change to an array with the different column widths : $col_widths = isset($col_options['widths']) ? (array)$col_options['widths'] : array(10,20,25,25,25,11,25,25,25,11,25,9,50,10);
line 225: $freeze_rows = isset($col_options['freeze_rows']) ? intval($col_options['freeze_rows']) : true; change the first row to frozen : true
line 236, add one line with the style settings for the header : $style = array( 'font'=>'Tahoma','font-size'=>10,'font-style'=>'bold','fill'=>'#eee','halign'=>'center','border'=>'left,right,top,bottom');
The docs of this class are very well explained and supported here :
Hi, Here an issue i found when using the Edit page , for some reason 2 fields do not show up with its value that i previous put. Below a screen of the Edit page where you can see that field "Equipo Tecnico" and "Soporte" show up empty. I added the project and the database in a zip-file so you can try. In the db folder is the tareas.sql file User is : juan / qwe123