diff options
author | zsloan | 2024-09-17 14:37:02 +0000 |
---|---|---|
committer | zsloan | 2024-09-17 14:38:13 +0000 |
commit | ee40a7ee9ccc5652a772b46ce1756882d29d4166 (patch) | |
tree | 260325bd0a80f7fc508165b8db8eb7e054abe5e6 | |
parent | 805b781e6eabfb42cbecb319fffc8ade855de914 (diff) | |
download | genenetwork2-ee40a7ee9ccc5652a772b46ce1756882d29d4166.tar.gz |
Don't set number/format of ticks for Y-Axis
Now that there's a flag for whether a plot is an Effect Size plot, there's no need for this
-rw-r--r-- | gn2/wqflask/static/new/javascript/draw_corr_scatterplot.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gn2/wqflask/static/new/javascript/draw_corr_scatterplot.js b/gn2/wqflask/static/new/javascript/draw_corr_scatterplot.js index 9a6d317d..2cd28b47 100644 --- a/gn2/wqflask/static/new/javascript/draw_corr_scatterplot.js +++ b/gn2/wqflask/static/new/javascript/draw_corr_scatterplot.js @@ -175,8 +175,6 @@ function drawg() { layout['width'] = 500 layout['xaxis']['nticks'] = 3 layout['xaxis']['tickformat'] = '.0f' - layout['yaxis']['nticks'] = 3 - layout['yaxis']['tickformat'] = '.0f' } Plotly.newPlot('scatterplot2', [trace2, trace1], layout, modebar_options) |