chartjs-chart-geo
Version:
Chart.js module for charting maps
11 lines (8 loc) • 493 B
text/typescript
import { registry } from 'chart.js';
import { ColorLogarithmicScale, SizeLogarithmicScale, ProjectionScale, ColorScale, SizeScale } from './scales';
import { GeoFeature } from './elements';
import { ChoroplethController, BubbleMapController } from './controllers';
export * from '.';
registry.addScales(ColorLogarithmicScale, SizeLogarithmicScale, ProjectionScale, ColorScale, SizeScale);
registry.addElements(GeoFeature);
registry.addControllers(ChoroplethController, BubbleMapController);