style: top users chart compact

This commit is contained in:
jialin
2025-06-27 17:26:34 +08:00
parent d26ea28028
commit bf8e988488
2 changed files with 15 additions and 3 deletions
@@ -11,7 +11,12 @@ const TopUser: React.FC<TopUserProps> = (props) => {
return (
<CardWrapper>
<HBar seriesData={userData} xAxisData={topUserList} height={440}></HBar>
<HBar
seriesData={userData}
xAxisData={topUserList}
height={440}
maxItems={10}
></HBar>
</CardWrapper>
);
};