Gathering detailed insights and metrics for ng-apexcharts-ninjamonz
Gathering detailed insights and metrics for ng-apexcharts-ninjamonz
Gathering detailed insights and metrics for ng-apexcharts-ninjamonz
Gathering detailed insights and metrics for ng-apexcharts-ninjamonz
ng-apexcharts is an implementation of apexcharts for angular. It comes with one simple component that enables you to use apexcharts in an angular project.
npm install ng-apexcharts-ninjamonz
Typescript
Module System
Node Version
NPM Version
TypeScript (93.18%)
HTML (3.77%)
JavaScript (2.94%)
Less (0.12%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
348 Stars
467 Commits
85 Forks
7 Watchers
2 Branches
29 Contributors
Updated on Jul 11, 2025
Latest Version
1.0.3
Package Id
ng-apexcharts-ninjamonz@1.0.3
Unpacked Size
268.44 kB
Size
51.50 kB
File Count
26
NPM Version
6.9.0
Node Version
10.6.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
4
ng-apexcharts is a wrapper for apexcharts for angular. It introduces one simple component that enables you to use apexcharts in an angular project.
For a demo checkout: Stackblitz example
1npm install apexcharts ng-apexcharts --save
1"scripts": [ 2 "node_modules/apexcharts/dist/apexcharts.min.js" 3]
1imports: [ 2 BrowserModule, 3 FormsModule, 4 ReactiveFormsModule, 5 NgApexchartsModule, 6 ... 7]
In any component you can use the chart using:
1<apx-chart [series]="series" [chart]="chart" [title]="title"></apx-chart>
You need to provide at least the series and chart attribute to make sure the chart can get created.
You can also use any other attribute from the following options.
All options of the chart can inserted using the attributes. This is a list of all available attributes:
1@Input() chart: ApexChart; 2@Input() annotations: ApexAnnotations; 3@Input() colors: string[]; 4@Input() dataLabels: ApexDataLabels; 5@Input() series: ApexAxisChartSeries | ApexNonAxisChartSeries; 6@Input() stroke: ApexStroke; 7@Input() labels: string[]; 8@Input() legend: ApexLegend; 9@Input() fill: ApexFill; 10@Input() tooltip: ApexTooltip; 11@Input() plotOptions: ApexPlotOptions; 12@Input() responsive: ApexResponsive[]; 13@Input() xaxis: ApexXAxis; 14@Input() yaxis: ApexYAxis | ApexYAxis[]; 15@Input() grid: ApexGrid; 16@Input() states: ApexStates; 17@Input() title: ApexTitleSubtitle; 18@Input() subtitle: ApexTitleSubtitle; 19@Input() theme: ApexTheme;
With the attribute autoUpdateSeries
you can control if the chart component should
call the updateSeries
function automatically if the series attribute is changed.
Set this attribute to false if you are using and changig the type property in your
series for a mixed chart. This only has the effect that the whole chart rerenders
even if only the series changes.
For a basic usage of the charts you dont need to use the methods of the chart.
But if you want to toggle a series for example you need to call them. All methods are proxied through the component so that you dont need to access the DOM by yourself.
Just reference the component as a ViewChild in your Component by using:
1@ViewChild('chartObj') chart: ChartComponent;
and chaning the template to this:
1<apx-chart #chartObj></apx-chart>
Now you're able to call methods from your Component.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
license file detected
Details
Reason
4 existing vulnerabilities detected
Details
Reason
5 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 4
Reason
Found 2/10 approved changesets -- score normalized to 2
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More