Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nova-ui/charts

Package Overview
Dependencies
Maintainers
0
Versions
458
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nova-ui/charts

Nova Charts is a library created to provide potential consumers with solutions for various data visualizations that conform with the Nova Design Language. It's designed to solve common patterns identified by UX designers, but also be very flexible so that

  • 15.0.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
179
decreased by-42.07%
Maintainers
0
Weekly downloads
 
Created
Source

Charts Overview

Nova Charts is a library created to provide potential consumers with solutions for various data visualizations that conform with the Nova Design Language. It's designed to solve common patterns identified by UX designers, but also be very flexible so that pieces of visualizations can be overridden or entirely new visualizations can be customized quickly. As with anything, the more customizations you wish to have, the more work and maintenance you will absorb within your own app's code.

Getting Started

Getting started with charts is quite simple:

  1. Include charts in your package.json file

    "devDependencies": {
        ...
        "@nova-ui/charts": >>last release version<<,
        ...
    }
    
  2. Add a reference to charts styles in your angular.json file. Without this step, the charts will render, but will look and act in unpredictable ways.

    "projects": {
        "your-project": {
            ...
            "architect": {
                ...
                "styles": [
                    "src/styles.less",
                    "./node_modules/@nova-ui/bits/bundles/css/styles.css",
                    "./node_modules/@nova-ui/charts/bundles/css/styles.css"
                 ],
    
  3. Import NuiChartsModule

    import { NuiChartsModule } from "@nova-ui/charts";
    
    @NgModule({
        declarations: [ ... ],
        imports: [ NuiChartsModule ],
        exports: [ ... ],
        providers: [ ... ]
    })
    
  4. Copy/Paste any of our examples (see TOC below) to create your own component, add it to your view and then play around with the options.

TOC

Keywords

FAQs

Package last updated on 16 Sep 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc