## @expertbridge-ui/plugin-chart-india-map

This plugin provides map for India states and union-territories for Expertbridge.

### Usage

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 IndiaMapChartPlugin from '@expertbridge-ui/plugin-chart-india-map';

new IndiaMapChartPlugin().configure({ key: 'india-map' }).register();
```

```js
<SuperChart
  chartType="india-map"
  width={600}
  height={600}
  formData={...}
  queriesData={[{
    data: {...},
  }]}
/>
```
