The column footer repeats on every page need to displayed at the end of page while Pdf generate with a normal export .
 $reportData->run()->export()       
  ->settings(array(
    "useLocalTempFolder"=>true,
    // "autoDeleteLocalTempFile"=>true,
    "autoDeleteTempFile" => true,
    "phantomjs"=>"/usr/local/bin/phantomjs",
    "resourceWaiting"=>2000,
    "serverLocalAddress" => "localhost", // default = "localhost", if your network doesn't allow localhost address use this setting
  ))
  ->pdf(array(
      "noRepeatTableFooter" => true,
      "format"=>$pageSize,
      "orientation"=>$pageOrientation
  ))->saveAs("report/".$fileName); 
report.view.php
Table::create([
                           'dataStore' => $this->dataStore('reportData'),
                           "showFooter" => true,
]);
