external/ag-shared/prompts/skills/example/ag-charts/enterprise-features.md
Use this to determine whether an example needs the enterprise or community package.
| Category | Enterprise-only | Community |
|---|---|---|
| Series | box-plot, candlestick, ohlc, heatmap, range-area, range-bar, waterfall, funnel, cone-funnel, nightingale, radar-area, radar-line, radial-bar, radial-column, map-shape, map-line, map-marker, pyramid, linear-gauge, radial-gauge, sunburst, treemap, chord, sankey | bar, line, area, scatter, bubble, pie, donut, histogram |
| Axes | ordinal-time, angle-category, angle-number, radius-category, radius-number | number, log, time, unit-time, category, grouped-category |
| Plugins | annotations, zoom, navigator, scrollbar, crosshair, animation, context-menu, toolbar, sync, ranges, gradient-legend, error-bars, data-source | legend, locale |
| Presets | financial charts (price-volume), gauge | sparkline |
Rule of thumb: If it's a specialised chart type (financial, statistical, hierarchical, geographic) or an interactive plugin (zoom, annotations, navigator), it's enterprise.
import {
AgCartesianChartOptions,
AgCharts,
AnimationModule,
BarSeriesModule,
ModuleRegistry,
} from 'ag-charts-enterprise';
import {
AgCartesianChartOptions,
AgCharts,
BarSeriesModule,
ModuleRegistry,
} from 'ag-charts-community';
Never mix imports from both ag-charts-community and ag-charts-enterprise.
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/ag-charts-community.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/ag-charts-enterprise.js"></script>
The community bundle will silently skip enterprise features — no errors, just missing functionality.