fix pp axis
All checks were successful
Deploy / deploy (push) Successful in 2m43s

This commit is contained in:
Lee 2024-09-28 08:19:22 +01:00
parent 737401f752
commit 0c93cf9dea

@ -58,12 +58,14 @@ type Dataset = {
* Generate an axis * Generate an axis
* *
* @param id the id of the axis * @param id the id of the axis
* @param reverse if the axis should be reversed
* @param display if the axis should be displayed * @param display if the axis should be displayed
* @param position the position of the axis * @param position the position of the axis
* @param displayName the optional name to display for the axis * @param displayName the optional name to display for the axis
*/ */
const generateAxis = ( const generateAxis = (
id: string, id: string,
reverse: boolean,
display: boolean, display: boolean,
position: "right" | "left", position: "right" | "left",
displayName: string, displayName: string,
@ -83,7 +85,7 @@ const generateAxis = (
ticks: { ticks: {
stepSize: 10, stepSize: 10,
}, },
reverse: true, reverse: reverse,
}); });
/** /**
@ -96,9 +98,9 @@ const createAxes = () => ({
}, },
reverse: true, reverse: true,
}, },
y: generateAxis("y", true, "left", "Global Rank"), // Rank axis with display name y: generateAxis("y", true, true, "left", "Global Rank"), // Rank axis with display name
y1: generateAxis("y1", false, "left", "Country Rank"), // Country Rank axis with display name y1: generateAxis("y1", true, false, "left", "Country Rank"), // Country Rank axis with display name
y2: generateAxis("y2", true, "right", "PP"), // PP axis with display name y2: generateAxis("y2", false, true, "right", "PP"), // PP axis with display name
}); });
/** /**