Skip to content

Commit

Permalink
💡 (#78) : Adicionando os dados de 2017, 2020 e 2021 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 bccf093 commit d469f2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions implementacao-front/src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ import Chart from "react-apexcharts"
const column = {
options: {
chart: {
id: 'apexchart-example'
id: 'apexcrt-example'
},
xaxis: {
categories: [2009, 2013, 2017, 2020, 2021]
}
},
series: [{
name: 'Nomeações',
data: [81, 219, 35, 50, 49],
data: [81, 217, 847, 2316, 3253],
color: "#FCA622",
},
{
name: 'Exonerações',
data: [16, 39, 50, 35, 45],
data: [16, 39, 149, 618, 708],
color: "#A11208",
}
]
Expand Down Expand Up @@ -68,4 +68,4 @@ function Home() {
)
}

export default Home
export default Home

0 comments on commit d469f2a

Please sign in to comment.