Skip to content

Commit 2c810a2

Browse files
author
Julien Debon
authored
Fix wrong type of BaseDataLayer.layout.[x|y]_axis.field
The types were incorrectly flagged as `number` instead of `string`
1 parent 988dea8 commit 2c810a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

esm/components/data_layer/base.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,15 +156,15 @@ class BaseDataLayer {
156156
* @param {number} [layout.x_axis.floor] The low end of the x-extent, which overrides any actual data range, min_extent, or buffer options.
157157
* @param {number} [layout.x_axis.ceiling] The high end of the x-extent, which overrides any actual data range, min_extent, or buffer options.
158158
* @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.
160160
* @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.
161161
* @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.
162162
* @param {boolean} [layout.y_axis.decoupled=false] If true, the data in this layer will not influence the y-extent of the panel.
163163
* @param {object} [layout.y_axis.axis=1] Which y axis to use for this data layer (left=1, right=2)
164164
* @param {number} [layout.y_axis.floor] The low end of the y-extent, which overrides any actual data range, min_extent, or buffer options.
165165
* @param {number} [layout.y_axis.ceiling] The high end of the y-extent, which overrides any actual data range, min_extent, or buffer options.
166166
* @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.
168168
* @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.
169169
* @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.
170170
* @param {object} [layout.tooltip.show] Define when to show a tooltip in terms of interaction states, eg, `{ or: ['highlighted', 'selected'] }`

0 commit comments

Comments
 (0)