Skip to content

Commit

Permalink
💡 (#78) : Adicionando os dados de 2009 e 2013 no gráfico de coluna
Browse files Browse the repository at this point in the history
Co-authored-by: Ceci Quaresma <[email protected]>
  • Loading branch information
matheusbmello and cqcoding committed Dec 3, 2023
1 parent 2933f62 commit 9ece2a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions implementacao-front/src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ const column = {
id: 'apexchart-example'
},
xaxis: {
categories: [2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023]
categories: [2009, 2013, 2017, 2020, 2021]
}
},
series: [{
name: 'Nomeações',
data: [30, 40, 35, 50, 49, 60, 70, 91, 125],
data: [81, 219, 35, 50, 49],
color: "#FCA622",
},
{
name: 'Exonerações',
data: [20, 60, 50, 35, 45, 55, 67, 43, 90],
data: [16, 39, 50, 35, 45],
color: "#A11208",
}
]
Expand Down

0 comments on commit 9ece2a5

Please sign in to comment.