aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2024-09-19 22:52:18 -0600
committerNavan Chauhan <navanchauhan@gmail.com>2024-09-19 22:52:18 -0600
commitc98d421f96310ad0161e262e460e590fef5c562c (patch)
treea211d3afa60b7116747b513437f0570e423318cc
parent7c480c5698ed7d4d258e3f66e3633666f297790a (diff)
scatter plot
-rw-r--r--templates/index.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
index 75153ce..3106ecd 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -226,6 +226,14 @@
</select>
</div>
</div>
+ <div class="row mb-3">
+ <label for="chartType" class="form-label">Chart Type</label>
+ <select name="chartType" id="chartType" class="form-control">
+ <option value="default" selected>Default</option>
+ <option value="patent_bar">Patent Bar Chart</option>
+ <option value="patent_scatter">Patent Scatter Plot</option>
+ </select>
+ </div>
<input type="submit" value="Generate Plot" class="btn btn-primary mb-3">
</form>
<div id="tableContainer" class="mt-3 mb-3"></div>