Skip to content

Commit 10b0101

Browse files
authored
Remaining small charts improvements (#631)
1 parent af1a683 commit 10b0101

14 files changed

+74
-74
lines changed

source/chart-type-reference/choropleth.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ A choropleth chart is a good choice to compare:
8787

8888
If you are looking for a chart to depict exact values rather than
8989
a high-level comparison, consider using a
90-
:ref:`Data Table <data-table-ref>`.
90+
:ref:`Table <data-table-ref>`.
9191

9292
Customization Options
9393
---------------------

source/chart-type-reference/data-table.txt

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _data-table-ref:
22

3-
==========
4-
Data Table
5-
==========
3+
=====
4+
Table
5+
=====
66

77
.. default-domain:: mongodb
88

@@ -12,17 +12,17 @@ Data Table
1212
:depth: 1
1313
:class: singlecol
1414

15-
Data tables represent data in a tabular view, similar to a
16-
`spreadsheet <https://en.wikipedia.org/wiki/Spreadsheet>`_. Data tables
15+
Tables represent data in a tabular view, similar to a
16+
`spreadsheet <https://en.wikipedia.org/wiki/Spreadsheet>`_. Tables
1717
split your data into categories, with each categorization field
1818
represented in the table columns. The unique categories are represented
1919
as the table rows, and |charts-short| displays aggregated values in the
2020
table body based on the fields selected.
2121

22-
Data Table Encoding Channels
23-
----------------------------
22+
Table Encoding Channels
23+
-----------------------
2424

25-
Data tables use the following :ref:`encoding channels
25+
Tables use the following :ref:`encoding channels
2626
<encoding-channels>`:
2727

2828
.. list-table::
@@ -75,17 +75,17 @@ Data tables use the following :ref:`encoding channels
7575
Use Cases
7676
---------
7777

78-
Data tables have a wide variety of applications, but are most useful
78+
Tables have a wide variety of applications, but are most useful
7979
when comparing multiple categories of calculated values. Visual charts
8080
struggle to display multiple categories of data without losing their
81-
audience. Data tables present data with multiple categories such that
81+
audience. Tables present data with multiple categories such that
8282
you can see which value applies to which slice of data.
8383

84-
Data tables are also useful for showing precise data values, rather
84+
Tables are also useful for showing precise data values, rather
8585
than comparing approximate values. Comparing approximate values is
8686
best done with a visual representation, instead of text.
8787

88-
You can use data tables to show:
88+
You can use tables to show:
8989

9090
- The total cost to rent an apartment, including rent, cleaning fees,
9191
and security deposits organized by location and total area of the
@@ -100,7 +100,7 @@ You can use data tables to show:
100100
Customization Options
101101
---------------------
102102

103-
The following customization options are specific to data table charts.
103+
The following customization options are specific to table charts.
104104
To see all available customization options, see
105105
:ref:`customize-charts`.
106106

@@ -123,12 +123,12 @@ Pin Columns
123123
~~~~~~~~~~~
124124

125125
You can pin :guilabel:`Group` and :guilabel:`Row Total` columns to the
126-
side of the data table. A pinned column remains fixed in place while the
126+
side of the table. A pinned column remains fixed in place while the
127127
rest of the table scrolls.
128128

129129
To pin a column, hover over the column you want to pin and click the
130130
:icon-fa5:`map-pin` button in the column header. The :icon-fa5:`map-pin`
131-
button toggles on and the column pins to the side of the data table:
131+
button toggles on and the column pins to the side of the table:
132132

133133
- A :guilabel:`Group` column pins to the left of any unpinned
134134
columns.
@@ -155,31 +155,31 @@ customization option.
155155
Examples
156156
--------
157157

158-
The following data table examples visualize data from a hospitality
158+
The following table examples visualize data from a hospitality
159159
and property service. Each document in the collection
160160
represents a unit available for rent and includes information such as
161161
the monthly unit price, neighborhood, and property type.
162162

163-
Basic Data Table
164-
~~~~~~~~~~~~~~~~
163+
Basic Table
164+
~~~~~~~~~~~
165165

166-
The following data table categorizes the rental listings by property
166+
The following table categorizes the rental listings by property
167167
type and location, and shows the average review rating and average
168168
weekly rent for each group:
169169

170170
.. figure:: /images/charts/data-table-basic-example.png
171171
:figwidth: 750px
172-
:alt: Basic Data Table Example
172+
:alt: Basic Table Example
173173

174174
The :guilabel:`Group` encoding channels of ``property_type`` and
175-
``suburb`` create a row in the data table for each unique combination
175+
``suburb`` create a row in the table for each unique combination
176176
of those two fields in the data.
177177

178178
The :guilabel:`Values` of ``review_scores_rating`` and
179179
``weekly_price`` each add a column to the table. For both values, we
180180
average the rating and price for each ``property type`` and ``suburb``
181181
using :manual:`aggregation </aggregation>` and display the results in
182-
the data table.
182+
the table.
183183

184184
The results are formatted using the Customization tab to display the
185185
mean weekly price as currency and round the mean review score to an
@@ -193,17 +193,17 @@ appropriate number of decimal places.
193193

194194
.. _dynamic-col-example:
195195

196-
Data Table with Dynamic Columns
197-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
196+
Table with Dynamic Columns
197+
~~~~~~~~~~~~~~~~~~~~~~~~~~
198198

199-
The following data table displays nearly the same data as the previous
200-
basic data table example. In this example, instead of making
199+
The following table displays nearly the same data as the previous
200+
basic table example. In this example, instead of making
201201
``property_type`` and ``suburb`` :guilabel:`Groups`, ``property_type``
202202
field is now a :guilabel:`Dynamic Column`:
203203

204204
.. figure:: /images/charts/data-table-dynamic-example.png
205205
:figwidth: 750px
206-
:alt: Basic Data Table Example
206+
:alt: Basic Table Example
207207

208208
Now, rather than having two category columns in the table, the
209209
``property_types`` become column titles. We are still aggregating
@@ -221,7 +221,7 @@ mean weekly price as currency.
221221
Limitations
222222
-----------
223223

224-
The maximum query response size for a data table is 50000 documents.
224+
The maximum query response size for a table is 50000 documents.
225225

226226
.. toctree::
227227
:titlesonly:

source/chart-type-reference/data-table/limit-rows.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _limit-data-table-rows:
22

3-
====================================
4-
Limit the Rows a Data Table Displays
5-
====================================
3+
===============================
4+
Limit the Rows a Table Displays
5+
===============================
66

77
.. default-domain:: mongodb
88

@@ -13,15 +13,15 @@ Limit the Rows a Data Table Displays
1313
:class: singlecol
1414

1515
Users with the ``Author`` :ref:`dashboard role <dashboard-roles>` can
16-
limit the number of rows that a data table displays, thereby limiting
16+
limit the number of rows that a table displays, thereby limiting
1717
the data accessible to viewers.
1818

1919
Behavior
2020
--------
2121

2222
Limiting is off by default.
2323

24-
When a row limit is applied to a data table in the
24+
When a row limit is applied to a table in the
2525
:doc:`Chart Builder </build-charts>`, it is applied to the chart
2626
definition. The visible subset of data becomes the entire data set
2727
available to viewers.

source/chart-type-reference/data-table/reorder-columns.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _reorder-data-table-columns:
22

3-
==========================
4-
Reorder Data Table Columns
5-
==========================
3+
=====================
4+
Reorder Table Columns
5+
=====================
66

77
.. default-domain:: mongodb
88

@@ -13,20 +13,20 @@ Reorder Data Table Columns
1313
:class: singlecol
1414

1515
Users with the author and owner :ref:`roles <dashboard-roles>`
16-
on data tables can reorder data table columns in the :doc:`Chart
16+
on tables can reorder table columns in the :doc:`Chart
1717
Builder </build-charts>`.
1818

1919
Behavior
2020
--------
2121

22-
When you reorder data table columns and save the
22+
When you reorder table columns and save the
2323
chart, |charts| saves the specified order as part of the chart
2424
definition. All |charts-short| users will see the new column order.
2525

2626
Pinned Columns
2727
~~~~~~~~~~~~~~
2828

29-
If you reorder a :guilabel:`Group` column in a data table that has
29+
If you reorder a :guilabel:`Group` column in a table that has
3030
:ref:`pinned columns <pin-columns>`, the following behaviors apply:
3131

3232
- If the column to the right of the destination is pinned,
@@ -37,12 +37,12 @@ If you reorder a :guilabel:`Group` column in a data table that has
3737
Procedure
3838
---------
3939

40-
To reorder data table columns, click and drag column headers to the
40+
To reorder table columns, click and drag column headers to the
4141
desired order.
4242

4343
.. note::
4444

45-
Data table :ref:`authors and owners <dashboard-roles>` can also
45+
Table :ref:`authors and owners <dashboard-roles>` can also
4646
reorder columns by modifying the order of the respective column
4747
:ref:`encoding channels <encoding-channels>`. |charts| renders data
4848
table columns in the same order you specify the column encoding

source/chart-type-reference/data-table/resize-table-text.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.. _resize-table-text:
22

3-
======================
4-
Resize Data Table Text
5-
======================
3+
=================
4+
Resize Table Text
5+
=================
66

7-
You can resize :ref:`Data Table <data-table-example>` chart text.
7+
You can resize :ref:`Table <data-table-example>` chart text.
88
Resizing table text changes the pixel size of the following components:
99

1010
- Header text, including icons
@@ -14,7 +14,7 @@ Resizing table text changes the pixel size of the following components:
1414
Procedure
1515
---------
1616

17-
To resize data table text:
17+
To resize table text:
1818

1919
.. procedure::
2020
:style: normal

source/chart-type-reference/data-table/sort-resize-columns.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _sort-resize-data-table-columns:
22

3-
==================================
4-
Sort and Resize Data Table Columns
5-
==================================
3+
=============================
4+
Sort and Resize Table Columns
5+
=============================
66

77
.. default-domain:: mongodb
88

@@ -13,7 +13,7 @@ Sort and Resize Data Table Columns
1313
:class: singlecol
1414

1515
Users with the viewer and author :ref:`roles <dashboard-roles>`
16-
on data tables can sort and resize data table columns. You
16+
on tables can sort and resize table columns. You
1717
can sort and resize columns either in the
1818
:doc:`dashboard </dashboards>` or the :doc:`Chart Builder
1919
</build-charts>`.
@@ -37,7 +37,7 @@ Procedure
3737
Sort Columns
3838
~~~~~~~~~~~~
3939

40-
To sort a data table column, click on its header. With each click, |charts| cycles between sorting the column in
40+
To sort a table column, click on its header. With each click, |charts| cycles between sorting the column in
4141
ascending order, descending order, and the default chart sorting order.
4242

4343
To sort by multiple columns, Shift + Click on the additional columns

source/chart-type-reference/data-table/toggle-row-column-totals.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
.. _toggle-row-column-totals:
22

3-
=======================================
4-
Toggle Data Table Row and Column Totals
5-
=======================================
3+
==================================
4+
Toggle Table Row and Column Totals
5+
==================================
66

7-
By default, data tables include a Column Totals row, which consists of
7+
By default, tables include a Column Totals row, which consists of
88
a row of values with sum totals for each column. Optionally, you can
99
enable a Row Totals column, which consists of a column of
1010
values containing sum totals for each row.
1111

12-
The following image shows a detail from a data table with row and
12+
The following image shows a detail from a table with row and
1313
column totals enabled and added text indicating which is which:
1414

1515
.. figure:: /images/charts/row-column-totals.png
1616
:figwidth: 541px
17-
:alt: Data table with row and column totals
17+
:alt: Table with row and column totals
1818

1919
Procedure
2020
---------

source/chart-types.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@ Gauge Charts
9090
Text Charts
9191
-----------
9292

93-
Data Tables
94-
~~~~~~~~~~~
93+
Tables
94+
~~~~~~
9595

96-
:ref:`Data Tables <data-table-ref>` represent data in a tabular view,
96+
:ref:`Tables <data-table-ref>` represent data in a tabular view,
9797
similar to a `spreadsheet <https://en.wikipedia.org/wiki/Spreadsheet>`_.
9898

9999
.. figure:: /images/charts/data-table-small.png
100100
:figwidth: 525px
101-
:alt: Data table example
101+
:alt: Table example
102102

103103
Number Charts
104104
~~~~~~~~~~~~~

source/customize-charts/conditional-formatting.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Conditional Formatting
1414

1515
|charts| provides conditional formatting options which modify the
1616
styling of individual chart values based on conditions you define.
17-
Conditional formatting is available for :ref:`Data Table <data-table-ref>`
17+
Conditional formatting is available for :ref:`Table <data-table-ref>`
1818
and :ref:`Number <number-chart-ref>` charts.
1919

2020
To view your existing rules or to add, edit, or delete a rule, expand
@@ -55,7 +55,7 @@ of the 2000s.
5555

5656
.. figure:: /images/charts/conditional-formatting-example-table.png
5757
:figwidth: 720px
58-
:alt: Example of a data table with conditional formatting applied.
58+
:alt: Example of a table with conditional formatting applied.
5959
Movie statistics are displayed by year and colored with a gradient that highlights shifting trends.
6060

6161
Add a Rule

source/encoding-channels/aggregation-options.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,18 +78,18 @@ Numbers
7878
and raises the result to the 2nd power with
7979
:manual:`$pow </reference/operator/aggregation/pow/>`.
8080

81-
* - ``variancep``
81+
* - ``variance population``
8282
- Calculates the population variance of values in the field.
8383
- Applies
8484
:manual:`$stdDevPop </reference/operator/aggregation/stdDevPop/>`
8585
and raises the result to the 2nd power with
8686
:manual:`$pow </reference/operator/aggregation/pow/>`.
8787

88-
* - ``stdev``
88+
* - ``standard deviation``
8989
- Calculates the sample standard deviation of values in the field.
9090
- :manual:`$stdDevSamp </reference/operator/aggregation/stdDevSamp/>`
9191

92-
* - ``stdevp``
92+
* - ``standard deviation population``
9393
- Calculates the population standard deviation of values in the
9494
field.
9595
- :manual:`$stdDevPop </reference/operator/aggregation/stdDevPop/>`

0 commit comments

Comments
 (0)