Skip to content

Commit

Permalink
Update Explorer.md (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
minh-biocommons authored Dec 19, 2024
1 parent 05a0129 commit 27324f7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/Configuration/Explorer.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,31 @@ and
https://localhost/Explorer/files
```

### Charts
The charts section configures data visualizations for the explorer page. Each chart is defined by its `chartType` and `title`.

```json
"charts": {
"race": {
"chartType": "fullPie",
"title": "Race"
},
"ethnicity": {
"chartType": "horizontalStacked",
"title": "Ethnicity"
},
"gender": {
"chartType": "bar",
"title": "Gender"
}
}
```

The currently supported chart types are:
* `bar`: a regular vertical bar chart.
* `horizontalStacked`: horizontal stacked bar chart.
* `fullPie`: full pie chart.
* `donut`: pie chart with a hole.

### Download Table Data

Expand Down

0 comments on commit 27324f7

Please sign in to comment.