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

@oneteme/jquery-echarts

v0.0.4

Published

jquery echarts lib

Readme

@oneteme/jquery-echarts

Angular renderer for Apache ECharts, built on top of @oneteme/jquery-core.

Overview

This library provides an Angular component and directive to render interactive charts using Apache ECharts, with full integration with the @oneteme/jquery-core data model.

Supported chart types: bar, columnpyramid, line, area, pie, donut, scatter, heatmap, radar, treemap, funnel, range

Installation

npm install @oneteme/jquery-echarts@beta

Note: This package requires echarts as a peer dependency. It is installed automatically with npm v7+. If not, install it manually:

npm install echarts

Requirements

| Peer dependency | Version | |-------------------------|----------------| | @angular/core | >= 16.1.0 | | @angular/common | >= 16.1.0 | | echarts | ^6.0.0 | | @oneteme/jquery-core | ^0.0.30 |

Usage

Import

Import ChartComponent in your Angular module or standalone component:

import { ChartComponent } from '@oneteme/jquery-echarts';

@NgModule({
  imports: [ChartComponent]
})
export class AppModule {}

Basic example

<chart
  [type]="'bar'"
  [config]="chartConfig"
  [data]="chartData"
  [isLoading]="isLoading">
</chart>
import { ChartProvider } from '@oneteme/jquery-core';

chartConfig: ChartProvider<string, number> = {
  title: 'Monthly Sales',
  series: [
    { name: 'Revenue', field: 'revenue' }
  ]
};

chartData = [
  { month: 'Jan', revenue: 4200 },
  { month: 'Feb', revenue: 5800 },
  { month: 'Mar', revenue: 3900 }
];

Inputs

| Input | Type | Required | Default | Description | |----------------|-----------------------------|----------|---------------------------------|--------------------------------------------------| | type | ChartType | ✅ | — | Type of chart to render | | config | ChartProvider<X, Y> | ✅ | — | Chart configuration from @oneteme/jquery-core | | data | any[] | ✅ | — | Raw data array | | isLoading | boolean | | false | Shows a loading overlay | | view | ViewConfig | | — | Enables series visibility toggling (View panel) | | theme | string | | null | ECharts theme name | | renderer | 'svg' \| 'canvas' | | 'svg' | ECharts rendering mode | | loadingLabel | string | | 'Chargement des données...' | Label shown during loading | | noDataLabel | string | | 'Aucune donnée' | Label shown when data is empty | | group | string \| null | | null | Group ID for chart synchronization | | groupSync | GroupSyncMode \| null | | null | Synchronization mode within the group | | debug | boolean | | false | Logs ECharts option to the console |

Outputs

| Output | Type | Description | |---------------|-----------------------------|------------------------------------------| | customEvent | EventEmitter<ChartCustomEvent> | Emitted on toolbar actions (previous, next, pivot) |

Chart synchronization

Charts sharing the same group ID can be synchronized:

<chart type="line" [config]="config1" [data]="data1" group="my-group" groupSync="all"></chart>
<chart type="bar"  [config]="config2" [data]="data2" group="my-group" groupSync="all"></chart>

groupSync values:

  • 'all' — Full sync via echarts.connect() (zoom + tooltip + legend)
  • 'datazoom' — Zoom only
  • 'tooltip' — Tooltip only
  • ['datazoom', 'tooltip'] — Combined manual sync

View panel (series visibility)

Pass a ViewConfig to enable the series toggle panel:

<chart [type]="'line'" [config]="config" [data]="data" [view]="viewConfig"></chart>
import { ViewConfig } from '@oneteme/jquery-core';

viewConfig: ViewConfig = {
  fields: [
    { key: 'revenue', label: 'Revenue' },
    { key: 'cost',    label: 'Cost' }
  ]
};

Low-level directive

For advanced use cases, the ChartDirective is also exported and can be used directly on any div:

<div echarts-chart
     [type]="'pie'"
     [config]="config"
     [data]="data">
</div>

Additional Documentation

For more information, examples and the full data model reference, see the main project documentation.