# Bullet Graphs

Learn how to use Wijmo Bullet Graph component in this documentation topic

## Content

Bullet graphs are a variation on linear gauges that displays actual and target values. It may also show ranges that identify whether the actual or current value is good or bad.

Bullet graphs convey information in a compact space, making them ideal for dashboards that need to display groups of single-valued metrics such as the current year-to-date sales revenue. Bullet Graphs were created and popularized by dashboard design expert Stephen Few.

![BulletGraph Gauge](https://cdn.mescius.io/document-site-files/images/3c7113e2-10b3-45ed-8f3b-9fb1e0af2b74/gauge/gauge-bullet-graph.png)

Example:

```JavaScript
import * as gauge from '@mescius/wijmo.gauge';

var myBulletGraph = new gauge.BulletGraph('#myBulletGraph', {
    min: 0,
    max: 100,
    value: 75,
    target: 60,
    bad: 50,
    good: 70,
    showText: 'None'
});
```