Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyan-dfinity committed Sep 11, 2023
1 parent adb69b1 commit dfe69e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function Chart({ title, data }) {
chartType="BarChart"
data={data}
options={options}
width="80%"
width="100%"
height="{100 * (data.length - 1)}px"
legendToggle
/>
Expand All @@ -36,7 +36,7 @@ export function Pie({ title, data }) {
chartType="PieChart"
data={data}
options={options}
width="80%"
width="100%"
height="300px"
/>
) : null}
Expand Down

0 comments on commit dfe69e2

Please sign in to comment.