npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@equinor/fusion-framework-react-ag-charts

v14.0.2

Published

Fusion package for using AG Charts

Downloads

1,459

Readme

@equinor/fusion-framework-react-ag-charts

Fusion Framework wrapper for AG Charts in React. This package re-exports the AG Charts React component, community modules, and enterprise modules through Fusion-scoped entry points so that chart library versions stay aligned across all Fusion applications.

Who Should Use This

Use @equinor/fusion-framework-react-ag-charts whenever you need to render charts inside a Fusion Framework React application. The package ensures every app consumes the same AG Charts version, avoiding duplicate bundles and version mismatches.

Installation

pnpm add @equinor/fusion-framework-react-ag-charts

Entry Points

| Sub-path | What it provides | Upstream package | | --- | --- | --- | | @equinor/fusion-framework-react-ag-charts | AgCharts React component and React-level utilities | ag-charts-react | | @equinor/fusion-framework-react-ag-charts/community | Community modules (AllCommunityModule), ModuleRegistry, and chart option types (AgChartOptions, AgChartTheme, …) | ag-charts-community | | @equinor/fusion-framework-react-ag-charts/enterprise | Enterprise modules (AgChartsEnterpriseModule) and enterprise-only chart types | ag-charts-enterprise |

Quick Start

1. Register Community Modules

Register chart modules once at application startup before rendering any chart:

import {
  AllCommunityModule,
  ModuleRegistry,
} from '@equinor/fusion-framework-react-ag-charts/community';

ModuleRegistry.registerModules([AllCommunityModule]);

2. Render a Chart

import { useState } from 'react';
import { AgCharts } from '@equinor/fusion-framework-react-ag-charts';
import type { AgChartOptions } from '@equinor/fusion-framework-react-ag-charts/community';

const ChartExample = () => {
  const [chartOptions] = useState<AgChartOptions>({
    data: [
      { month: 'Jan', avgTemp: 2.3, iceCreamSales: 162000 },
      { month: 'Mar', avgTemp: 6.3, iceCreamSales: 302000 },
      { month: 'May', avgTemp: 16.2, iceCreamSales: 800000 },
      { month: 'Jul', avgTemp: 22.8, iceCreamSales: 1254000 },
      { month: 'Sep', avgTemp: 14.5, iceCreamSales: 950000 },
      { month: 'Nov', avgTemp: 8.9, iceCreamSales: 200000 },
    ],
    series: [{ type: 'bar', xKey: 'month', yKey: 'iceCreamSales' }],
  });

  return <AgCharts options={chartOptions} />;
};

Enable Enterprise Chart Features

Import AgChartsEnterpriseModule from the /enterprise sub-path to unlock advanced chart types such as waterfall, heatmap, sunburst, and treemap.

Enterprise features require a valid AG Charts enterprise license.

import { AgChartsEnterpriseModule } from '@equinor/fusion-framework-react-ag-charts/enterprise';

Integrate AG Charts with AG Grid

When using AG Grid's built-in charting (integrated charts), pass the AG Charts enterprise module to IntegratedChartsModule.with(). This requires the @equinor/fusion-framework-react-ag-grid package:

import { IntegratedChartsModule } from '@equinor/fusion-framework-react-ag-grid/enterprise';
import { AgChartsEnterpriseModule } from '@equinor/fusion-framework-react-ag-charts/enterprise';

enableAgGrid(configurator, (builder) => {
  builder.addModule(IntegratedChartsModule.with(AgChartsEnterpriseModule));
});

Key Concepts

  • Module registration — AG Charts uses a modular architecture. You must register the modules your application needs via ModuleRegistry.registerModules() before any chart renders. AllCommunityModule is the easiest starting point.
  • Chart options — Charts are configured declaratively through an AgChartOptions object that describes data, series types, axes, legends, and themes.
  • Thin wrapper — This package does not add custom logic. It re-exports upstream AG Charts packages so that Fusion applications share a single, centrally managed version.

Related Packages