You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP β†’
Socket
Book a DemoInstallSign in
Socket

ag-charts-core

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ag-charts-core

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

12.0.2
latest
Source
npmnpm
Version published
Weekly downloads
233K
3.54%
Maintainers
1
Weekly downloads
Β 
Created

What is ag-charts-core?

The ag-charts-core package is a powerful charting library that allows developers to create a wide variety of charts for data visualization. It is part of the AG Grid ecosystem and provides a flexible and customizable way to represent data graphically.

What are ag-charts-core's main functionalities?

Line Charts

Line charts are used to display data points connected by straight lines. This is useful for showing trends over time.

{ "type": "line", "data": { "series": [{ "xKey": "year", "yKey": "value", "data": [{ "year": 2020, "value": 50 }, { "year": 2021, "value": 75 }] }] } }

Bar Charts

Bar charts represent data with rectangular bars. They are useful for comparing quantities across different categories.

{ "type": "bar", "data": { "series": [{ "xKey": "category", "yKey": "value", "data": [{ "category": "A", "value": 30 }, { "category": "B", "value": 80 }] }] } }

Pie Charts

Pie charts are circular charts divided into sectors, illustrating numerical proportions. They are ideal for showing percentage or proportional data.

{ "type": "pie", "data": { "series": [{ "angleKey": "value", "data": [{ "label": "Apples", "value": 50 }, { "label": "Oranges", "value": 50 }] }] } }

Other packages similar to ag-charts-core

Keywords

chart

FAQs

Package last updated on 15 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts