Skip to content
Open
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
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
Original file line number Diff line number Diff line change
Expand Up @@ -317,11 +317,14 @@ export const AdoptionCandidateGraph: React.FC = () => {
style={{
background: { fill: "url(#axis_gradient)" },
}}
singleQuadrantDomainPadding={false}
domainPadding={{ x: 65, y: 40 }}
>
<ChartAxis
label={t("terms.confidence")}
showGrid
tickValues={[
-5,
0,
5,
10,
Expand All @@ -343,20 +346,21 @@ export const AdoptionCandidateGraph: React.FC = () => {
90,
95,
100,
105,
]}
tickLabelComponent={<></>}
style={{
axisLabel: { fontSize: 20, padding: 30 },
axisLabel: { fontSize: 20, padding: 55 },
}}
/>
<ChartAxis
label={t("terms.businessCriticality")}
showGrid
dependentAxis
tickValues={[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]}
tickValues={[-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]}
tickLabelComponent={<></>}
style={{
axisLabel: { fontSize: 20, padding: 30 },
axisLabel: { fontSize: 20, padding: 80 },
}}
/>
<CartesianSquare
Expand Down