## @superset-ui/legacy-preset-chart-deckgl [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-deckgl.svg?style=flat)](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-deckgl.svg?style=flat-square) [![Libraries.io](https://img.shields.io/librariesio/release/npm/%40superset-ui%2Flegacy-preset-chart-deckgl?style=flat)](https://libraries.io/npm/@superset-ui%2Flegacy-preset-chart-deckgl) This plugin provides `deck.gl` for Superset. ### Usage Import the preset and register. This will register all the chart plugins under `deck.gl`. ```js import { DeckGLChartPreset } from '@superset-ui/legacy-preset-chart-deckgl'; new DeckGLChartPreset().register(); ``` or register charts one by one. Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to lookup this chart throughout the app. ```js import { ArcChartPlugin } from '@superset-ui/legacy-preset-chart-deckgl'; new ArcChartPlugin().configure({ key: 'deck_arc' }).register(); ``` Then use it via `SuperChart`. See [storybook](https://apache-superset.github.io/superset-ui-plugins-deckgl) for more details. ```js ```