superset/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud
Krist Wongsuphasawat 72c2b7afc0 feat(plugin-chart-choropleth-map): add package (#560)
* feat(plugin-chart-choropleth-map): scaffold and load map (#527)

* feat: add package

* feat: storybook working

* feat: load usa and world map

* refactor: clean up

* fix: remove test data

* refactor: utilize dynamic import

* build: remove unused dependencies

* fix: address pr comments

* fix: comment

* feat(plugin-chart-choropleth-map): add more country maps (#529)

* feat(plugin-chart-choropleth-map): add zooming (#528)

* feat: add zooming

* feat: can zoom in and out

* feat: add zoom controls

* refactor: extract controls

* fix: address comments

* feat(plugin-chart-choropleth-map): add encoding (#541)

* feat: add encoder

* feat: add encoding

* docs: add categorical

* fix: any

* docs: update storybook

* feat(plugin-chart-choropleth-map): add tooltip (#548)

* feat: support tooltip

* feat: support tooltip fields

* fix: default projection

* build: bump dependency

* build: update dependency

* build: mark private
2021-11-26 11:46:23 +08:00
..
src feat(superset-ui-style): export ThemeProvider and useTheme (#553) 2021-11-26 11:46:22 +08:00
test feat: add control grouping functionality (#485) 2021-11-26 11:46:18 +08:00
types feat(preset-chart-xy): migrate from plugins repo (#377) 2021-11-26 11:46:07 +08:00
package.json feat(plugin-chart-choropleth-map): add package (#560) 2021-11-26 11:46:23 +08:00
README.md feat(preset-chart-xy): migrate from plugins repo (#377) 2021-11-26 11:46:07 +08:00

@superset-ui/plugin-chart-word-cloud

Version David (path)

This plugin provides Word Cloud for Superset.

Usage

Configure key, which can be any string, and register the plugin. This key will be used to lookup this chart throughout the app.

import WordCloudChartPlugin from '@superset-ui/legacy-plugin-chart-word-cloud';

new WordCloudChartPlugin()
  .configure({ key: 'word-cloud' })
  .register();

Then use it via SuperChart. See storybook for more details.

<SuperChart
  chartType="word-cloud"
  width={600}
  height={600}
  formData={...}
  queryData={{
    data: {...},
  }}
/>