Private
Public Access
1
0

added compare

This commit is contained in:
Sander Roosendaal
2019-04-30 20:18:47 +02:00
parent 337b6c530f
commit 4f2858cebd
4 changed files with 68 additions and 1 deletions

View File

@@ -85,6 +85,7 @@
var xaxis = $("#id_xaxis").parent().parent();
var yaxis1 = $("#id_yaxis1").parent().parent();
var yaxis2 = $("#id_yaxis2").parent().parent();
var plottype = $("#id_plottype").parent().parent();
// Hide the fields.
// Use JS to do this in case the user doesn't have JS
@@ -99,6 +100,7 @@
xaxis.hide();
yaxis1.hide();
yaxis2.hide();
plottype.hide();
if (functionfield.val() == 'boxplot') {
plotfield.show();
@@ -127,6 +129,12 @@
plotfield.hide();
}
if (functionfield.val() == 'compare') {
xaxis.show();
yaxis1.show();
plottype.show();
}
// Setup an event listener for when the state of the
// checkbox changes.
@@ -151,6 +159,7 @@
xaxis.hide();
yaxis1.hide();
yaxis2.hide();
plottype.hide();
}
else if (Value=='histo') {
plotfield.show();
@@ -167,6 +176,7 @@
xaxis.hide();
yaxis1.hide();
yaxis2.hide();
plottype.hide();
}
else if (Value=='trendflex') {
@@ -184,6 +194,7 @@
xaxis.hide();
yaxis1.hide();
yaxis2.hide();
plottype.hide();
}
else if (Value=='flexall') {
@@ -200,6 +211,7 @@
plotfield.hide();
palette.hide();
binsize.hide();
plottype.hide();
errorbars.hide();
}
else if (Value=='stats') {
@@ -213,6 +225,24 @@
palette.hide();
binsize.hide();
errorbars.hide();
plottype.hide();
}
else if (Value=='compare') {
xaxis.show();
yaxis1.show();
yaxis2.hide();
x_param.hide();
y_param.hide();
groupby.hide();
spmmin.hide();
spmmax.hide();
workmin.hide();
workmax.hide();
plotfield.hide();
palette.hide();
binsize.hide();
plottype.show();
errorbars.hide();
}
});
});