nn-charts 1.4.8
Install from the command line:
Learn more about npm packages
$ npm install @springernature/nn-charts@1.4.8
Install via package.json:
"@springernature/nn-charts": "1.4.8"
About this version
In your project directory, run the following command:
yarn @springernature/nn-charts
import { StackedBarChart } from "nn-charts";
const data = {} // JSON data to render chart
const chart = new StackedBarChart(data)
import { ArticleOverTimeChart } from "nn-charts";
const data = {} // JSON data to render chart
const chart = new ArticleOverTimeChart(data)
import { LineChart } from "nn-charts";
const data = {} // JSON data to render chart
const chart = new LineChart(data)
import { CollapsibleTreeChart } from "nn-charts";
const data = {} // JSON data to render chart
const chart = new CollapsibleTreeChart(data)
public/index.html