general/text/wordcloud-english

Example page

/**
 * A recreation of this demo: // https://www.jasondavies.com/wordcloud/
 */
import { Chart } from '@antv/g2';

const Word = {
  '32': 2,
  word: 10,
  cloud: 1,
  generator: 1,
  works: 1,
  layout: 4,
  algorithm: 4,
  positioning: 1,
  words: 8,
  without: 3,
  overlap: 1,
  available: 1,
  github: 1,
  open: 1,
  source: 1,
  license: 1,
  d3cloud: 1,
  note: 1,
  code: 1,
  converting: 1,
  text: 1,
  rendering: 1,
  final: 1,
  output: 1,
  requires: 1,
  additional: 1,
  development: 1,
  placement: 2,
  quite: 1,
  slow: 1,
  hundred: 1,
  run: 1,
  asynchronously: 1,
  configurable: 1,
  time: 2,
  step: 3,
  size: 1,
  makes: 1,
  possible: 2,
  animate: 1,
  placed: 5,
  stuttering: 1,
  recommended: 1,
  always: 1,
  use: 1,
  even: 2,
  animations: 1,
  prevents: 1,
  browsers: 1,
  event: 1,
  loop: 1,
  blocking: 1,
  placing: 1,
  incredibly: 1,
  simple: 2,
  starting: 2,
  important: 1,
  attempt: 1,
  place: 1,
  point: 1,
  usually: 1,
  near: 1,
  middle: 1,
  somewhere: 1,
  central: 1,
  horizontal: 1,
  line: 1,
  intersects: 1,
  previously: 2,
  move: 2,
  one: 1,
  along: 1,
  increasing: 1,
  spiral: 1,
  repeat: 1,
  intersections: 1,
  found: 1,
  hard: 1,
  part: 1,
  making: 1,
  perform: 2,
  efficiently: 1,
  according: 1,
  jonathan: 1,
  feinberg: 1,
  wordle: 1,
  uses: 1,
  combination: 1,
  hierarchical: 2,
  bounding: 3,
  boxes: 1,
  quadtrees: 1,
  achieve: 1,
  reasonable: 1,
  speeds: 1,
  glyphs: 1,
  javascript: 1,
  isnt: 1,
  way: 1,
  retrieve: 3,
  precise: 1,
  glyph: 1,
  shapes: 1,
  via: 1,
  dom: 1,
  except: 1,
  perhaps: 1,
  svg: 1,
  fonts: 1,
  instead: 1,
  draw: 2,
  hidden: 1,
  canvas: 1,
  element: 1,
  pixel: 2,
  data: 2,
  retrieving: 1,
  separately: 2,
  expensive: 2,
  many: 1,
  pixels: 2,
  batch: 1,
  operation: 3,
  sprites: 1,
  masks: 2,
  initial: 1,
  implementation: 2,
  performed: 1,
  collision: 3,
  detection: 2,
  using: 1,
  sprite: 7,
  doesnt: 1,
  copy: 1,
  appropriate: 1,
  position: 1,
  larger: 2,
  representing: 1,
  whole: 2,
  area: 4,
  advantage: 1,
  involves: 1,
  comparing: 2,
  candidate: 3,
  relevant: 1,
  rather: 1,
  previous: 1,
  somewhat: 1,
  surprisingly: 1,
  lowlevel: 1,
  hack: 1,
  made: 1,
  tremendous: 1,
  difference: 1,
  constructing: 1,
  compressed: 1,
  blocks: 1,
  '1bit': 1,
  '32bit': 1,
  integers: 1,
  thus: 1,
  reducing: 1,
  number: 1,
  checks: 1,
  memory: 1,
  times: 1,
  fact: 1,
  turned: 1,
  beat: 1,
  box: 2,
  quadtree: 1,
  everything: 1,
  tried: 1,
  large: 2,
  areas: 1,
  font: 1,
  sizes: 1,
  think: 2,
  primarily: 1,
  version: 2,
  needs: 1,
  single: 2,
  test: 1,
  per: 1,
  whereas: 1,
  compare: 1,
  every: 1,
  overlaps: 1,
  slightly: 1,
  another: 1,
  possibility: 1,
  merge: 1,
  tree: 2,
  fairly: 1,
  though: 1,
  compared: 1,
  analagous: 1,
  mask: 1,
  essentially: 1,
  oring: 1,
  block: 1,
};

const chart = new Chart({
  container: 'container',
  autoFit: true,
});

chart.options({
  type: 'wordCloud',
  data: Object.entries(Word).map(([text, value]) => ({ text, value })),
  layout: {
    fontSize: [20, 100],
  },
  encode: { color: 'text' },
  legend: false,
});

chart.render();