Matters

Team Stats

Name

GP

PPG

RPG

APG

SPG

BPG

3PG

TS%

FG%

2p%

3p%

FT%

Brady Liu

10

17.70

4.50

1.40

0.70

0.20

2.7

50.8%

39.4%

52.2%

29.7%

75.0%

Dui Lin

1

0.00

0.00

0.00

0.00

0.00

0.0

0.0%

0.0%

#DIV/0!

0.0%

#DIV/0!

Haoming Zhang

7

5.71

6.00

1.00

0.00

0.14

0.0

36.6%

31.3%

44.1%

0.0%

66.7%

Haozhen Wang

11

4.45

3.18

0.91

0.55

0.18

0.5

40.9%

30.8%

44.0%

18.5%

66.7%

Hongpu Gong

8

9.88

10.00

1.50

1.13

1.50

0.1

48.6%

46.2%

50.9%

12.5%

48.6%

Ming Jiang

4

2.25

1.50

1.00

0.50

0.00

0.8

40.9%

27.3%

0.0%

33.3%

#DIV/0!

Po-Jen Lai

4

8.25

3.50

1.50

1.25

0.50

0.5

41.0%

34.3%

37.0%

25.0%

58.3%

Ruoxi Zhang

7

3.00

2.86

0.71

0.71

0.00

0.4

42.1%

23.8%

18.2%

30.0%

88.9%

Stan Zhou

6

15.83

7.83

4.50

2.00

0.33

1.5

60.1%

51.5%

61.9%

34.6%

64.0%

Yanming Zhang

8

1.88

4.50

0.38

0.25

0.00

0.1

33.0%

23.8%

33.3%

11.1%

100.0%

Yiyang Wang

3

0.67

1.33

0.67

0.67

0.00

0.0

15.5%

16.7%

25.0%

0.0%

0.0%

Zichu Wang

9

1.22

2.78

0.89

1.11

0.11

0.0

21.4%

20.8%

23.8%

0.0%

25.0%

Zirui Li

4

1.25

1.00

1.25

0.75

0.25

0.3

22.7%

18.2%

33.3%

12.5%

#DIV/0!

喻熹

8

2.88

2.88

0.38

0.13

0.13

0.4

29.9%

25.7%

31.6%

18.8%

25.0%

Subscribe to our newsletter to be in touch with latest news.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// 搜尋功能 document.getElementById('searchInput').addEventListener('input', function () { const filter = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const name = item.querySelector('.Name').innerText.toLowerCase(); if (name.includes(filter)) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); }); // 篩選功能 document.getElementById('teamFilter').addEventListener('change', function () { const selectedTeam = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const team = item.querySelector('Team').innerText.toLowerCase(); if (selectedTeam === 'all' || team === selectedTeam) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); });