5.4.5 • Published 1 month ago

@antv/f2-wordcloud v5.4.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

F2 的 词云图

基于第三方库 wordcloud2 的扩展

Usage

const data = [{
  word: 'series',
  weight: 274470,
}, ...].sort((a, b) => {
  return b.weight - a.weight;
});

const img = await new Promise((resolve) => {
  const img = new Image();
  img.src = 'https://gw.alipayobjects.com/zos/finxbff/compress-tinypng/3fd5a3b2-a7d0-4c51-aede-c2c8bbaac8b8.png';

  img.onload = () => {
    resolve(img);
  }
});

<Canvas context={context}>
  <WordCloud
    data={data}
    maskShape={
      <group>
        <image
          style={{
            x: 0,
            y: 0,
            // img 需要先 load 完成
            img,
            width: 260,
            height: 200,
          }}
        />
      </group>
    }
  />
</Canvas>;
5.4.5

1 month ago

5.4.4

2 months ago

5.4.3

2 months ago

5.4.2

2 months ago

5.4.1

2 months ago

5.4.0

2 months ago

5.3.0

3 months ago

5.2.2

4 months ago

5.2.1

4 months ago

5.2.0

4 months ago

5.1.0

4 months ago

5.0.35

6 months ago

5.0.36

6 months ago

5.0.37

6 months ago

5.0.38

5 months ago

5.0.39

5 months ago

5.0.33

7 months ago

5.0.34

6 months ago

5.0.30

8 months ago

5.0.31

8 months ago

5.0.32

8 months ago

5.0.28

10 months ago

5.0.29

10 months ago

5.0.7

11 months ago

5.0.6

11 months ago

5.0.5

11 months ago

5.0.4

12 months ago

5.0.3

12 months ago

5.0.2

12 months ago

5.0.1

1 year ago

4.0.1

1 year ago

4.0.0

1 year ago