Skip to content

Commit

Permalink
removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Kraniket901 committed Sep 29, 2023
1 parent 6c97728 commit ea880f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/home/sections/section14/Section14.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Section14 = () => {
series: [
{
name: "Total Number of Teams",
data: [120, 200, 260, 450, 570, 640, 800], // Updated Y-axis values for the left graph
data: [120, 200, 260, 450, 570, 640, 800],
},
{
name: "Total Participations",
Expand Down Expand Up @@ -86,7 +86,7 @@ const Section14 = () => {
},
},
}}
series={state.series.slice(0, 1)} // Use only the first series for the left graph
series={state.series.slice(0, 1)}
type="area"
/>
</div>
Expand All @@ -106,7 +106,7 @@ const Section14 = () => {
},
},
}}
series={state.series.slice(1)} // Use only the second series for the right graph
series={state.series.slice(1)}
type="bar"
/>
</div>
Expand Down

0 comments on commit ea880f9

Please sign in to comment.