Hi Fernie,
This capability isn’t available or supported by default in Arcadia, but you can use our Custom Style feature to modify the table visual and make it a vertical table:

Here’s an example of what the output looks like after applying the Custom Style:
To create the Custom Style, you need to add the following CSS and Javascript
CSS:
.simple-table {
}
.simple-table th,
.simple-table td {
padding:4px 8px;
font-size:12px;
}
.simple-table thead th {
text-transform:uppercase;
font-size:11px;
}
JS:
return {
version: "1",
disableDraw: function () {
return true;
},
supported: {
visualType: "table"
},
afterDraw: function () {
var data = arcapi.dataResult();
var columns = data.columns(); // all data columns
var rows = data.rows(); // all data rows
var $chart = $("#" + arcapi.chartId()); // the div for drawing the chart
var $table = $('<table class="table table-width-100 table-striped table-firstcolumn header-align-left table-totals dataTable" id="ver_table' + arcapi.chartId() + '">'); // the div for drawing the chart
var dimIdx = data.dim_start_idx();
var aggStartIdx = data.agg_start_idx();
var aggEndIdx = data.agg_end_idx();
var $header = $("<thead>");
var $headerRow = $("<tr role='row' class='odd' >");
var $body = $("<tbody>");
var tableRows = {};
if (dimIdx === data.dim_end_idx()) {
if ($("#ver_table" + arcapi.chartId()).length > 0 ){
$("#ver_table" + arcapi.chartId()).remove();
}
$chart.append($table);
$table.append($body);
rows.forEach(function(columnValues, colIdx) {
columnValues.forEach(function(rowValue, rowIdx){
if (rowIdx >= aggStartIdx && rowIdx <= aggEndIdx ) {
var $row;
if (tableRows[rowIdx]) {
$row = tableRows[rowIdx];
} else {
$row = $("<tr>");
tableRows[rowIdx] = $row;
$body.append($row);
$row.append(makeHeaderCell(columns[rowIdx].colname()));
}
$row.append(makeCell(rowValue));
}
});
$headerRow.append(makeHeaderCell(columnValues[dimIdx]))
});
} else {
console.log("Only 1 dimension allowed");
}
function makeHeaderCell(cellValue) {
return "<th>" + cellValue + "</th>"
}
function makeCell(cellValue) {
return "<td>" + cellValue + "</td>"
}
},
};
Thank you,
Tadd Wood