Home
last modified time | relevance | path

Searched refs:columnData (Results 1 – 1 of 1) sorted by relevance

/plugin/avmathtable/
H A Dsyntax.php213 $columnData = [];
225 $columnData[$j] = [
258 $columnData[$j]['count'] += 1;
260 …$columnData[$j]['precision'] = max($columnData[$j]['precision'], $this->countDecimalPlaces($cell));
267 $columnData[$j]['sum'] += $numericCell;
269 $columnData[$j]['total'] += $numericCell;
270 …$columnData[$j]['max'] = is_null($columnData[$j]['max']) ? $numericCell : max($columnData[$j]['max…
271 …$columnData[$j]['min'] = is_null($columnData[$j]['min']) ? $numericCell : min($columnData[$j]['min…
277 $output .= $this->insertCellData($cell, $columnData, $rowData, $j, $i);
303 …private function insertCellData(mixed $cell, array &$columnData, array &$rowData, int $colNum, int… argument
[all …]