Spaces:
Running
Running
final
Browse files- static/script.js +6 -6
static/script.js
CHANGED
@@ -728,13 +728,13 @@ askBtn.addEventListener('click', async () => {
|
|
728 |
<div class="graph-action-container">
|
729 |
<select id="graphTypeSelect" class="language-dropdown">
|
730 |
<option value="">Select type</option>
|
731 |
-
<option value="histplot">
|
732 |
-
<option value="scatterplot">
|
733 |
-
<option value="lineplot">
|
734 |
-
<option value="barplot">
|
735 |
-
<option value="boxplot">
|
736 |
</select>
|
737 |
-
<button type="button" id="generateGraphBtn" class="graph-generate-btn">
|
738 |
</div>
|
739 |
</div>
|
740 |
|
|
|
728 |
<div class="graph-action-container">
|
729 |
<select id="graphTypeSelect" class="language-dropdown">
|
730 |
<option value="">Select type</option>
|
731 |
+
<option value="histplot">Histogram</option>
|
732 |
+
<option value="scatterplot">Point cloud</option>
|
733 |
+
<option value="lineplot">Curve</option>
|
734 |
+
<option value="barplot">Bar chart</option>
|
735 |
+
<option value="boxplot">Boxplot</option>
|
736 |
</select>
|
737 |
+
<button type="button" id="generateGraphBtn" class="graph-generate-btn">Generate</button>
|
738 |
</div>
|
739 |
</div>
|
740 |
|