Skip to content

Commit da67017

Browse files
also annotate showGroups => showSections
for #855
1 parent bb8c0e1 commit da67017

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/data-table.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ dc.dataTable = function (parent, chartGroup) {
440440
* @param {Boolean} [showSections=true]
441441
* @returns {Boolean|dc.dataTable}
442442
*/
443-
_chart.showSections = _chart.showGroups = function (showSections) {
443+
_chart.showSections = function (showSections) {
444444
if (!arguments.length) {
445445
return _showSections;
446446
}
@@ -456,6 +456,8 @@ dc.dataTable = function (parent, chartGroup) {
456456
* @param {Boolean} [showGroups=true]
457457
* @returns {Boolean|dc.dataTable}
458458
*/
459+
_chart.showGroups = dc.logger.annotate(_chart.showSections,
460+
'consider using dataTable.showSections instead of dataTable.showGroups for clarity');
459461

460462
return _chart.anchor(parent, chartGroup);
461463
};

web/examples/download-table.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
table
112112
.dimension(spendDim)
113113
.sortBy(function(d) { return +d.Spent; })
114-
.showGroups(false)
114+
.showSections(false)
115115
.columns(['Name',
116116
{
117117
label: 'Spent',

web/examples/table-pagination.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
.height(480)
5757
.dimension(runDimension)
5858
.size(Infinity)
59-
.showGroups(false)
59+
.showSections(false)
6060
.columns(['Expt', 'Run', 'Speed'])
6161
.sortBy(function (d) { return [fmt(+d.Expt),fmt(+d.Run)]; })
6262
.order(d3.ascending)

0 commit comments

Comments
 (0)