From e8ebda01f838956982905b1e16a571080919f759 Mon Sep 17 00:00:00 2001 From: CJ Yetman Date: Thu, 12 Dec 2024 00:37:22 +0100 Subject: [PATCH] removed fixed width of "included table" - closes #176 --- src/js/included_table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/included_table.js b/src/js/included_table.js index 5d071c7..f803d01 100644 --- a/src/js/included_table.js +++ b/src/js/included_table.js @@ -21,7 +21,7 @@ export function tabulateIntoIncludedTable(data, id, opts) { var columns = Object.keys(data[0]); d3.select(id).selectAll('table').remove(); - var idDiv = d3.select(id).attr('class', 'd3chart included_table').style('width', '800px'); + var idDiv = d3.select(id).attr('class', 'd3chart included_table'); var table = idDiv.append('table'), thead = table.append('thead'),