Private
Public Access
1
0

next version interactive plot

This commit is contained in:
2024-04-03 22:16:32 +02:00
parent 18e779dac8
commit 9bc107f427
5 changed files with 37 additions and 27 deletions

View File

@@ -14,6 +14,7 @@
<h1>Empower Force Curve</h1>
<ul class="main-content">
<canvas hidden id="canvas"></canvas>
<li class="grid_4">
<div id="theplot" class="flexplot">
{{ the_div|safe }}
@@ -44,7 +45,14 @@
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script>
$(document).ready(function() {
$(document).ready(function() {
var label = $('label[for="' + $("#id_plotcircles").attr('id') + '"]');
label.attr("class", "hidden")
var label2 = $('label[for="' + $("#id_plotlines").attr('id') + '"]');
label2.attr("class", "hidden")
var label3 = $('label[for="' + $("#id_includereststrokes").attr('id') + '"]');
label3.attr("class", "hidden")
});
</script>