UNPKG

drizzle-cube

Version:

Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.

11 lines (10 loc) 623 B
/** * Drizzle Cube Chart Components * * Chart components only - optimized for applications that only need charts * without the full dashboard or query builder functionality. */ export { RechartsBarChart, RechartsLineChart, RechartsAreaChart, RechartsPieChart, RechartsScatterChart, RechartsRadarChart, RechartsRadialBarChart, RechartsTreeMapChart, DataTable } from './components/charts'; export { formatChartData } from './utils/index'; export { CHART_COLORS, POSITIVE_COLOR, NEGATIVE_COLOR, CHART_MARGINS } from './utils/chartConstants'; export type { ChartType, ChartAxisConfig, ChartDisplayConfig } from './types';