d3-views-view-d3.tpl.php in d3.js 7
Template to display a view as a table.
- $visualization: The rendered chart html. No JS.
- $header: An array of header labels keyed by field id.
- $rows: An array of row items. Each row is an array of content. $rows are keyed by row number, fields within rows are keyed numerically for the purposes of chart rendering.
- $show_table: A boolean indicating whether or not to show the debug table.
File
modules/d3_views/views/theme/d3-views-view-d3.tpl.phpView source
<?php
/**
* @file
* Template to display a view as a table.
*
* - $visualization: The rendered chart html. No JS.
* - $header: An array of header labels keyed by field id.
* - $rows: An array of row items. Each row is an array of content.
* $rows are keyed by row number, fields within rows are keyed numerically
* for the purposes of chart rendering.
* - $show_table: A boolean indicating whether or not to show the debug
* table.
* @ingroup views_templates
*/
print $visualization;
print render($table);