Skip to content
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: 5 additions & 0 deletions public/themes/hcb.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@
html,
#root {
height: 100%;
}

.recharts-radial-bar-background-sector{
stroke: var(--sapTextColor);
stroke-width: 1.5;
}
7 changes: 6 additions & 1 deletion public/themes/hcw.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@
html,
#root {
height: 100%;
}
}

.recharts-radial-bar-background-sector{
stroke: var(--sapTextColor);
stroke-width: 1;
}
5 changes: 3 additions & 2 deletions src/shared/components/UI5RadialChart/UI5RadialChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const UI5RadialChart = ({
return (
<div className={classnames} onClick={onClick}>
<RadialChart
accessibleName={'Radial chart'}
displayValue={text}
displayValueStyle={{
fontSize: textSize,
Expand All @@ -38,8 +39,8 @@ export const UI5RadialChart = ({
width: size + 'px',
}}
chartConfig={{
innerRadius: '99%',
outerRadius: '99%',
innerRadius: '98%',
outerRadius: '98%',
barSize: 12,
}}
/>
Expand Down
Loading