# ascom-chartist-tooltip

> Tooltip plugin for Chartist.js

Latest version **1.0.0** (published 2018-07-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install ascom-chartist-tooltip
pnpm add ascom-chartist-tooltip
yarn add ascom-chartist-tooltip
bun add ascom-chartist-tooltip
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-07-06 |
| First published | 2018-07-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 0 |
| Unpacked size | 8.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Dmitry Lebedev |
| Maintainers | commonascom |
| Keywords | chartist, plugin, tooltip |

## Links

- npm: https://www.npmjs.com/package/ascom-chartist-tooltip
- Repository: https://github.com/lebydev/chartist-plugin-tooltip
- Issues: https://github.com/lebydev/chartist-plugin-tooltip
- npm.io page: https://npm.io/package/ascom-chartist-tooltip

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

- 1.0.0 (latest) — 2018-07-06

## README

# Tooltips for Chartist.js

NPM package: https://www.npmjs.com/package/chartist-logscale-plugin-tooltips
Supported all types of charts.

## Available options and their defaults

```javascript
var defaultOptions = {
  class: undefined, // accecpts 'class1', 'class1 class2', etc.
  tooltipFnc: undefined //accepts function
};
```

## Sample usage in Chartist.js

`npm i chartist-logscale-plugin-tooltips --save`

With descriptive text:
```js
var chart = new Chartist.Line('.ct-chart', {
  labels: [1, 2, 3],
  series: [
    [
      {meta: 'description', value: 1},
      {meta: 'description', value: 5},
      {meta: 'description', value: 3}
    ],
    [
      {meta: 'other description', value: 2},
      {meta: 'other description', value: 4},
      {meta: 'other description', value: 2}
    ]
  ]
}, {
  plugins: [
    Chartist.plugins.tooltip()
  ]
});
```

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