New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@og_soft/charts

Package Overview
Dependencies
Maintainers
9
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@og_soft/charts

Chart components are based on Charts.js and PrimeNG.

latest
npmnpm
Version
8.0.0
Version published
Maintainers
9
Created
Source

Charts

Chart components are based on Charts.js and PrimeNG.

[TOC]

Installation

yarn add @og_soft/charts

Prerequisites

The library is dependent on Charts.js (^3.6.0) and PrimeNG (^12.2.2), so please make sure, you have them installed.

yarn add chart.js@^3.6.0
yarn add primeng@^12.2.2

And include the necessary PrimeNG styles into your project configuration (project.json or angular.json) or your stylesheet (see docs for more information):

{
  "styles": [
    // ...
    "node_modules/primeng/resources/themes/saga-blue/theme.css",
    "node_modules/primeng/resources/primeng.min.css"
  ]
}

And also include Chart.js in your project configuration (project.json or angular.json):

{
  "scripts": [
    // ...
    "node_modules/chart.js/dist/Chart.js"
  ]
}

Usage

Import module

import { ChartModule } from '@og_soft/charts';

@NgModule({
  imports: [
    // ...
    ChartModule,
  ],
})
export class YourModule {}

Bar Chart

Create data:

const data: ChartData = {
  labels: ['1.11.', '2.11.', '3.11.', '4.11.', '5.11.', '6.11.', '7.11.'],
  datasets: [
    {
      label: 'My Dataset',
      backgroundColor: '#689F38',
      data: [4000, 2300, 3100, 1700, 1800, 2400, 3200],
    },
  ],
};

And use in template:

<og-chart type="bar" [data]="data"></og-chart>

Line Chart

Create data:

const data: ChartData = {
  labels: ['1.11.', '2.11.', '3.11.', '4.11.', '5.11.', '6.11.', '7.11.'],
  datasets: [
    {
      label: 'My Dataset',
      borderColor: '#689F38',
      data: [4000, 2300, 3100, 1700, 1800, 2400, 3200],
    },
  ],
};

And use in template:

<og-chart type="line" [data]="data"></og-chart>

Changelog

See the CHANGELOG file.

FAQs

Package last updated on 05 Aug 2024

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