Create progress stacked bar chart

This commit is contained in:
Takeshi Kimata
2024-04-27 14:28:26 +09:00
parent c2c5652769
commit 5f9a7c0dc2
2 changed files with 7 additions and 2 deletions

View File

@@ -62,6 +62,11 @@ export default function RunProgressChart() {
left: -20,
},
},
tooltip: {
x: {
show: false,
},
},
},
});
return (
@@ -72,7 +77,7 @@ export default function RunProgressChart() {
series={chartData.series}
type="bar"
width={500}
height={100}
height={80}
/>
</div>
);