It seems when you display a table in a Custom DrillDown the title is not displaying. Here is the Table::Create:
Table::create(
"dataSource"=>$this->dataStore("transactions"),
"title"=>"Transaction Report for ".date("D M d, Y", $this->targetDay),
"showFooter"=>"bottom",
"columns"=>[
'name' => ['label'=>"Name"],
'amount' => ["label"=>"Amount Collected", "type"=>"number", "prefix"=>"$",
"footer"=>"sum", "footerText"=>"<b>Total Collected: @value</b>", "cssStyle"=>$cssStyle],
],
"cssClass"=>["table"=>"table table-bordered table-striped"],
);
and this is what I am seeing: