Skip to content

Commit

Permalink
#4448 Third column not selectable for Bubble and Heatmap charts
Browse files Browse the repository at this point in the history
  • Loading branch information
kravets-levko committed Dec 16, 2019
1 parent 944adb9 commit 56f96d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/app/visualizations/chart/Editor/GeneralSettings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ function getAvailableColumnMappingTypes(options) {
result.push("series");
}

if (some(options.seriesOptions, { type: "bubble" })) {
if ((options.globalSeriesType === "bubble") || some(options.seriesOptions, { type: "bubble" })) {
result.push("size");
}

if (some(options.seriesOptions, { type: "heatmap" })) {
if (options.globalSeriesType === "heatmap") {
result.push("zVal");
}

Expand Down

0 comments on commit 56f96d9

Please sign in to comment.