diff options
-rw-r--r-- | templates/index.html | 8 |
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> |