diff --git a/src/components/Plots/LMDDotPlot.js b/src/components/Plots/LMDDotPlot.js index e2b51f2b..2bf6e7b0 100644 --- a/src/components/Plots/LMDDotPlot.js +++ b/src/components/Plots/LMDDotPlot.js @@ -16,6 +16,7 @@ class LMDDotPlot extends Component { isLoading: false, }; this.setData(props.data); + this.minBubbleSize = 3; } componentDidUpdate(prevProps) { @@ -61,7 +62,8 @@ class LMDDotPlot extends Component { sizemode: 'area', sizeref: this.getSizeRef(bubbles), symbol: 'circle', - color: 'black' + color: 'black', + sizemin: this.minBubbleSize } }; return plotObj; @@ -102,6 +104,7 @@ class LMDDotPlot extends Component { symbol: 'circle', colorscale: 'RdBu', showscale: true, + sizemin: this.minBubbleSize, reversescale: false, color: colors, colorbar: { title: 'log2 (Fold Change)' },