Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
jerem1508 committed Aug 27, 2024
1 parent 8adcdfd commit dacc130
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/pages/european-projects/charts-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"id": "typeOfFinancingSubsidiesRequested",
"title": "",
"subtitle": "Subventions demandées et obtenues (M€)",
"description": "TODO: regroup KICS, PCP, COFUND",
"description": "",
"source": "Commission européenne, Cordis",
"sourceURL": "https://cordis.europa.eu/",
"integrationURL": "/european-projects/components/pages/analysis/overview/charts/projects-types-1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,21 +56,21 @@ export default function FundingRanking({ indicateurId }) {
<Col>
<ChartWrapper
id={indicateurId}
options={optionsChart(prepareData(data, sortIndicateur))}
legend={GetLegend([
["Projets évalués", "#009099"],
["Projets lauréats", "#233E41"],
])}
options={optionsChart(prepareData(data, sortIndicateur))}
/>
</Col>
<Col>
<ChartWrapper
id={successGraphId}
options={optionChartSuccess(prepareData(data, sortIndicateur))}
legend={GetLegend([
["Taux de réussite du pays", "#27A658"],
["Taux de réussite moyen", "#D75521"],
])}
options={optionChartSuccess(prepareData(data, sortIndicateur))}
/>
</Col>
</Row>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ export default function Top10Beneficiaries() {
return (
<ChartWrapper
id="top10beneficiaries"
options={options(data, searchParams.get("country_code") ?? null)}
legend={GetLegend([
["Total des subventions en euros €", "#233E41"],
["Poids du cumul des subventions (%)", "#D75521"],
])}
options={options(data, searchParams.get("country_code") ?? null)}
/>
);
}

0 comments on commit dacc130

Please sign in to comment.