Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(chart): rename y-axis #101

Merged
merged 2 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/demo/public/options.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
]
},
"therapy_of_tumor": {
"hintText": [
"Bei Patienten mit mehreren onkologischen Diagnosen werden auch Einträge angezeigt, die ggfs. nicht den ausgewählten Suchkriterien entsprechen."
],
"aggregations": [
"medicationStatements"
],
Expand All @@ -64,7 +67,7 @@
},
"medicationStatements": {
"hintText": [
"Art der systemischen oder abwartenden Therapie (ADT Basisdatensatz Versionen 2014, 2021)"
"Angezeigt wird die Art der systemischen oder abwartenden Therapie (ADT Basisdatensatz Versionen 2014, 2021). Bei Patienten mit mehreren onkologischen Diagnosen werden auch Einträge angezeigt, die ggfs. nicht den ausgewählten Suchkriterien entsprechen. "
],
"tooltips": {
"CH": "Chemotherapie",
Expand Down
4 changes: 2 additions & 2 deletions packages/demo/src/AppCCP.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
chartType="bar"
headers={therapyHeaders}
xAxisTitle="Art der Therapie"
yAxisTitle="Anzahl der Therapien"
yAxisTitle="Anzahl der Therapieeinträge"
backgroundColor={JSON.stringify(barChartBackgroundColors)}
/>
</div>
Expand All @@ -255,7 +255,7 @@
catalogueGroupCode="medicationStatements"
chartType="bar"
xAxisTitle="Art der Therapie"
yAxisTitle="Anzahl der Therapien"
yAxisTitle="Anzahl der Therapieeinträge"
backgroundColor={JSON.stringify(barChartBackgroundColors)}
/>
</div>
Expand Down
Loading