Skip to content

Commit

Permalink
Bubble chart marker size override was clobbering seriesColor. (#3063)
Browse files Browse the repository at this point in the history
Colors can now be set for bubble charts in UI.
  • Loading branch information
toph authored and arikfr committed Nov 18, 2018
1 parent 0ce7772 commit 6e4f0cc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/app/visualizations/chart/plotly/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,7 @@ function prepareChartData(seriesList, options) {

if (seriesOptions.type === 'bubble') {
plotlySeries.marker = {
color: seriesColor,
size: map(data, i => i.size),
};
} else if (seriesOptions.type === 'box') {
Expand Down

0 comments on commit 6e4f0cc

Please sign in to comment.