ng-apexcharts-ninjamonz
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

ng-apexcharts

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

Installation

  1. Install using npm:
npm install apexcharts ng-apexcharts --save
  1. Open angular.json and under scripts add:
"scripts"[
  "node_modules/apexcharts/dist/apexcharts.min.js"
]
  1. Add ng-apexcharts-module to imports
imports[
  BrowserModule,
  FormsModule,
  ReactiveFormsModule,
  NgApexchartsModule,
  ...
]

Usage

In any component you can use the chart using:

<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.

Options

All options of the chart can inserted using the attributes. This is a list of all available attributes:

@Input() chartApexChart;
@Input() annotationsApexAnnotations;
@Input() colorsstring[];
@Input() dataLabelsApexDataLabels;
@Input() seriesApexAxisChartSeries | ApexNonAxisChartSeries;
@Input() strokeApexStroke;
@Input() labelsstring[];
@Input() legendApexLegend;
@Input() fillApexFill;
@Input() tooltipApexTooltip;
@Input() plotOptionsApexPlotOptions;
@Input() responsiveApexResponsive[];
@Input() xaxisApexXAxis;
@Input() yaxisApexYAxis | ApexYAxis[];
@Input() gridApexGrid;
@Input() statesApexStates;
@Input() titleApexTitleSubtitle;
@Input() subtitleApexTitleSubtitle;
@Input() themeApexTheme;

Auto update series

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.

Use methods

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:

@ViewChild('chartObj') chartChartComponent;

and chaning the template to this:

<apx-chart #chartObj></apx-chart>

Now you're able to call methods from your Component.

Author

Morris Janatzek (morrisjdev)

Package Sidebar

Install

npm i ng-apexcharts-ninjamonz

Weekly Downloads

1

Version

1.0.3

License

MIT

Unpacked Size

275 kB

Total Files

26

Last publish

Collaborators

  • ninjamonz