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

@efixdata/exeria-chart-ui-react

v1.2.0

Published

React UI for Exeria Charts

Readme

Exeria Charts React UI

React wrapper components for Exeria Charts.

Use this package when you want the prebuilt toolbar and menu controls on top of an existing chart runtime instance.

Installation

npm install @efixdata/exeria-chart @efixdata/exeria-chart-ui-react

Usage

import { useLayoutEffect, useRef, useState } from "react";
import Chart, { type ChartInstance, type Candle } from "@efixdata/exeria-chart";
import { ChartUI } from "@efixdata/exeria-chart-ui-react";

const candles: Candle[] = [
  {
    stamp: 1715472000000,
    o: 1.1,
    h: 1.2,
    l: 1.05,
    c: 1.18,
    v: 2500,
  },
];

export function ChartExample() {
  const containerRef = useRef<HTMLDivElement | null>(null);
  const [chart, setChart] = useState<ChartInstance | null>(null);

  useLayoutEffect(() => {
    const container = containerRef.current;
    if (!container) {
      return undefined;
    }

    const instance = new Chart({ container });

    instance.init();
    void instance.setMainSeriesData(candles);
    setChart(instance);

    return () => {
      instance.destroy();
      setChart(null);
    };
  }, []);

  return (
    <div>
      <div ref={containerRef} style={{ height: 480 }} />
      {chart ? <ChartUI chart={chart} /> : null}
    </div>
  );
}

When to Use This Package

Use the React wrapper when:

  • you are already mounting the chart runtime inside React
  • you want the built-in top toolbar and left-menu controls
  • you prefer to start with an existing UI layer rather than building all chart controls from scratch

Start with @efixdata/exeria-chart alone if you want the smallest possible integration surface first.

Notes

  • ChartUI expects a live chart instance created from @efixdata/exeria-chart.
  • You are responsible for creating and destroying the runtime chart instance.
  • The broader documentation site and onboarding flow live in apps/docs in the repository.

License

This package is open source under the GNU Affero General Public License v3.0 (AGPL v3). Closed-source products require a separate commercial license from Efix Data Sp. z o. o. Paid plugins are licensed per project under separate terms. See the bundled LICENSE file and the repository LICENSING.md for the full legal terms and usage summary.