Skip to content

Commit

Permalink
update demo site
Browse files Browse the repository at this point in the history
  • Loading branch information
birm committed Nov 9, 2023
1 parent 5cac0c5 commit fe18d14
Show file tree
Hide file tree
Showing 22 changed files with 1,949 additions and 43 deletions.
2 changes: 1 addition & 1 deletion docs/BarChart.5f4d3c70.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/DensityChart.25818996.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/Heatmap.9c081d3f.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/Histogram.3148aeff.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/HorizontalBarChart.fcfb2c72.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/KMCurve.b8405d3d.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/ParallelCoordinates.f76efbe7.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/PieChart.13f339c7.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/ScatterChart.9b7d43a5.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/VisDataTable.c1822ccd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/VisGridCard.fac47b76.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

88 changes: 88 additions & 0 deletions docs/config/demo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
{
"HOME_URL": "https://pathdb.cancerimagingarchive.net/",
"HEIGHT_OF_VIS_HEADER": 40,
"TITLE": "PRISM Collection Explorer",
"MARGIN_OF_VIS": [30, 10],
"UNIT_OF_GRID_VIEW": [230, 230],
"MARGIN_OF_GRID_VIEW": [10, 10],
"DATA_RESOURCE_URL": "./config/wines.csv",
"DATA_FORMAT": "csv",
"THEME_COLOR": "#007bff",
"VISUALIZATION_VIEW_CONFIGURATION": [
{
"id": "quality",
"title": "Quality Level",
"description": "Quality Level",
"chartType": "BAR_CHART",
"fields": { "x": "quality_label" },
"size": [2, 1],
"priority": 50
},
{
"id": "v_acidity",
"title": "Volatile Acidity",
"description": "Volatile Acidity",
"chartType": "HISTOGRAM",
"fields": { "x": "volatile acidity" },
"binsCount": 50,
"size": [2, 1],
"priority": 50
},
{
"id": "vc_acidity",
"title": "Volatile and Citric Acidity",
"description": "Volatile and Citric Acidity",
"chartType": "SCATTER_CHART",
"fields": { "x": "volatile acidity", "y": "citric acid" },
"binsCount": 30,
"size": [2, 2],
"priority": 50
},
{
"id": "props",
"title": "Properties",
"description": "Properties",
"chartType": "PARALLEL_COORDINATES",
"fields": {
"y": ["citric acid", "volatile acidity", "sulphates", "residual sugar"]
},
"binsCount": 50,
"size": [2, 2],
"priority": 50
},
{
"id": "density",
"title": "Properties",
"description": "Properties",
"chartType": "DENSITY_2D",
"fields": {
"x": "residual sugar",
"y": "free sulfur dioxide"
},
"size": [2, 1],
"priority": 50
},
{
"id": "heatmap",
"title": "Heatmap",
"description": "Heatmap",
"chartType": "HEATMAP",
"fields": {
"y": "wine_type",
"x": "quality_label",
"z": "residual sugar"
},
"size": [2, 1],
"priority": 50
},
{
"id": "type",
"title": "Wine Type",
"description": "Wine Type",
"chartType": "PIE_CHART",
"fields": { "x": "wine_type" },
"size": [1, 1],
"priority": 50
}
]
}
3 changes: 3 additions & 0 deletions docs/config/wines.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"MARGIN_OF_VIS": [10, 10],
"UNIT_OF_GRID_VIEW": [230, 210],
"MARGIN_OF_GRID_VIEW": [10, 10],
"RESIZABLE" : "TRUE",
"DRAGGABLE" : 1,
"HAS_SETTINGS" : "Anything trurthy is true for these boolean fields, including FALSE.",
"DATA_RESOURCE_URL": "./config/wines.csv",
"DATA_FORMAT": "csv",
"VISUALIZATION_VIEW_CONFIGURATION": [
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><link rel="icon shortcut" href="favicon.a348c8cf.ico"><title>EagleScope</title><link rel="stylesheet" href="source.3256e7ab.css"><body> <div id="root"></div> <script src="source.56bfa686.js"></script> </body></html>
<!DOCTYPE html><html><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><link rel="icon shortcut" href="favicon.a348c8cf.ico"><title>EagleScope</title><link rel="stylesheet" href="source.39baaf26.css"><body> <div id="root"></div> <script src="source.22420e25.js"></script> </body></html>
Loading

0 comments on commit fe18d14

Please sign in to comment.