0.1.2 • Published 5 years ago

plugin-chart-leaflet v0.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

plugin-chart-leaflet

Usage

A mockup of a visualization plugin for Superset.

import LeafletMapChartPlugin from 'plugin-chart-leaflet';

new LeafletMapChartPlugin()
  .configure({ key: 'leafletmap' })
  .register();

Then use it via SuperChart inside of Superset. See storybook for more details.

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