You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: esm/components/data_layer/base.js
+2-2
Original file line number
Diff line number
Diff line change
@@ -156,15 +156,15 @@ class BaseDataLayer {
156
156
* @param {number} [layout.x_axis.floor] The low end of the x-extent, which overrides any actual data range, min_extent, or buffer options.
157
157
* @param {number} [layout.x_axis.ceiling] The high end of the x-extent, which overrides any actual data range, min_extent, or buffer options.
158
158
* @param {Number[]} [layout.x_axis.min_extent] The smallest possible range [min, max] of the x-axis. If the actual values lie outside the extent, the actual data takes precedence.
159
-
* @param {number} [layout.x_axis.field] The datum field to look at when determining data extent along the x-axis.
159
+
* @param {string} [layout.x_axis.field] The datum field to look at when determining data extent along the x-axis.
160
160
* @param {number} [layout.x_axis.lower_buffer] Amount to expand (pad) the lower end of an axis as a proportion of the extent of the data.
161
161
* @param {number} [layout.x_axis.upper_buffer] Amount to expand (pad) the higher end of an axis as a proportion of the extent of the data.
162
162
* @param {boolean} [layout.y_axis.decoupled=false] If true, the data in this layer will not influence the y-extent of the panel.
163
163
* @param {object} [layout.y_axis.axis=1] Which y axis to use for this data layer (left=1, right=2)
164
164
* @param {number} [layout.y_axis.floor] The low end of the y-extent, which overrides any actual data range, min_extent, or buffer options.
165
165
* @param {number} [layout.y_axis.ceiling] The high end of the y-extent, which overrides any actual data range, min_extent, or buffer options.
166
166
* @param {Number[]} [layout.y_axis.min_extent] The smallest possible range [min, max] of the y-axis. Actual lower or higher data values will take precedence.
167
-
* @param {number} [layout.y_axis.field] The datum field to look at when determining data extent along the y-axis.
167
+
* @param {string} [layout.y_axis.field] The datum field to look at when determining data extent along the y-axis.
168
168
* @param {number} [layout.y_axis.lower_buffer] Amount to expand (pad) the lower end of an axis as a proportion of the extent of the data.
169
169
* @param {number} [layout.y_axis.upper_buffer] Amount to expand (pad) the higher end of an axis as a proportion of the extent of the data.
170
170
* @param {object} [layout.tooltip.show] Define when to show a tooltip in terms of interaction states, eg, `{ or: ['highlighted', 'selected'] }`
0 commit comments