coreChartsBundle top-level property

RegistrationBundle coreChartsBundle
final

Apache/free-tier chart registrations.

Keep this bundle intentionally small. It is the stable adoption surface for the open-source package: core rendering, JSON configs, and standard chart families. Advanced enterprise, financial, statistical, hierarchical, export, and large-data features belong in tenun_pro.

Implementation

final coreChartsBundle = RegistrationBundle(
  name: 'core',
  description: 'Free core charts: Bar, Line, Area, Pie, Donut, and Scatter',
  registrations: [
    coreBarRegistration,
    coreStackedBarRegistration,
    coreGroupedBarRegistration,
    coreHorizontalBarRegistration,
    coreStackedHorizontalBarRegistration,
    coreLineRegistration,
    coreLineAreaRegistration,
    coreAreaRegistration,
    coreStackedAreaRegistration,
    corePieRegistration,
    coreDonutRegistration,
    coreScatterRegistration,
  ],
);