# d3-gems

> Collection of reusable widgets powered by d3.js

Latest version **0.0.8** (published 2014-09-23) · 0 weekly downloads

## Install

```sh
npm install d3-gems
pnpm add d3-gems
yarn add d3-gems
bun add d3-gems
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.8 |
| Published | 2014-09-23 |
| First published | 2014-01-28 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6 |
| Author | Sergey Todyshev |
| Maintainers | sergeyt |
| Keywords | d3, d3js, chart, widget |

## Links

- npm: https://www.npmjs.com/package/d3-gems
- Repository: git@github.com:sergeyt/d3-gems
- Homepage: https://github.com/sergeyt/d3-gems
- Issues: https://github.com/sergeyt/d3-gems/issues
- npm.io page: https://npm.io/package/d3-gems

## Alternatives

- [d3-force-3d](https://npm.io/package/d3-force-3d.md) — 1.0M weekly downloads
- [ng2-charts](https://npm.io/package/ng2-charts.md) — 486.8K weekly downloads
- [@arcgis/core](https://npm.io/package/@arcgis/core.md) — 257.8K weekly downloads
- [react-sparklines](https://npm.io/package/react-sparklines.md) — 249.3K weekly downloads
- [react-native-gifted-charts](https://npm.io/package/react-native-gifted-charts.md) — 182.3K weekly downloads

## Recent versions

- 0.0.8 (latest) — 2014-09-23
- 0.0.7 — 2014-02-02
- 0.0.6 — 2014-02-01
- 0.0.5 — 2014-02-01
- 0.0.4 — 2014-01-29
- 0.0.3 — 2014-01-28
- 0.0.2 — 2014-01-28
- 0.0.1 — 2014-01-28

## README

[![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com/)
[![Build Status](https://drone.io/github.com/sergeyt/d3-gems/status.png)](https://drone.io/github.com/sergeyt/d3-gems/latest)
[![Deps Status](https://david-dm.org/sergeyt/d3-gems.png)](https://david-dm.org/sergeyt/d3-gems)
[![DevDeps Status](https://david-dm.org/sergeyt/d3-gems/dev-status.png)](https://david-dm.org/sergeyt/d3-gems#info=devDependencies)

[![NPM version](https://badge.fury.io/js/d3-gems.png)](http://badge.fury.io/js/d3-gems)
[![Bower version](https://badge.fury.io/bo/d3-gems.svg)](http://badge.fury.io/bo/d3-gems)

[![NPM](https://nodei.co/npm/d3-gems.png?downloads=true&stars=true)](https://nodei.co/npm/d3-gems/)

# d3-gems

Collection of reusable widgets powered by [d3.js](http://d3js.org/)

## JavaScript Example

Sample code below shows how to render chart.

```javascript
// first write/generate chart definition
var column_chart = {
	type: "column",
	axes: {
		x: {majorTicks: "outside"},
		y: {
			majorTicks: "outside",
			scalar: true,
			margin: true,
			grid: { major: true, minor: false }
		}
	},
	categories: ["A", "B", "A"],
	series: {
		Revenue: [90, 70, 95],
		Units: [30, 25, 27]
	},
	title: {
		text: "Test Chart",
		position: "center"
	},
	legend: {
		position: "topright"
	}
};

// then render chart
$(function(){
	$('.chart')
		.data('chart', column_chart)
		.chart();
});
```

See also examples at demo folder.

---
_Source: https://npm.io/package/d3-gems · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
