DevExtreme v23.2 is now available.

Explore our newest features/capabilities and share your thoughts with us.

Your search did not match any results.

Bullet Charts

Bullet charts are useful when you need to compare a single measure to a target value. A bullet bar indicates the measure and a vertical line indicates the target value. The bullet also includes a zero level line that indicates zero on the scale.

Configure the Bullet Bar

Specify the value property to set the length of the bullet bar. The value should be between the startScaleValue and endScaleValue. If you do not specify the scale range, the startScaleValue is 0 and the endScaleValue is calculated automatically based on measure and target values.

When you arrange several bullets in a column, set the same scale range for them so that their bullet bars can be compared visually.

To change the bar color, use the color property.

Configure the Target and Zero Level Lines

Set the target property to specify the target value. You can also use the targetColor and targetWidth properties to customize the target line appearance.

The zero level line indicates zero and has the same color as the target line. If you want to hide the zero level line, you can disable the showZeroLevel property.

Configure the Tooltip

A tooltip contains information about the measure and target values. To configure the tooltip, use the tooltip object. In this demo, the customizeTooltip function within this object customizes the tooltip content.

NOTE

Use our DevExpress BI Dashboard to embed interactive business intelligence into your next web app.

The Web Dashboard is a data analysis UI component that you can embed into your ASP.NET Core or Angular, React, and Vue applications with .NET backend. Dashboards allow you to display multiple inter-connected data analysis elements such as grids, charts, maps, gauges, and others: all within an automatically-arranged layout.

The set of components allows you to deploy an all-in-one solution and switch between Viewer and Designer modes directly on the web client (includes adaptive layouts for tablet & mobile).

The Web Dashboard is available as a part of a Universal subscription.

Get Started with DevExpress BI Dashboard | Explore Demos

Backend API
$(() => { const options = { startScaleValue: 0, endScaleValue: 35, tooltip: { customizeTooltip(arg) { return { text: `Current t&#176: ${arg.value}&#176C<br>Average t&#176: ${arg.target}&#176C`, }; }, }, }; const junFirst = $.extend({ value: 23, target: 20, color: '#ebdd8f' }, options); const julFirst = $.extend({ value: 27, target: 24, color: '#e8c267' }, options); const augFirst = $.extend({ value: 20, target: 26, color: '#e55253' }, options); const junSecond = $.extend({ value: 24, target: 22, color: '#ebdd8f' }, options); const julSecond = $.extend({ value: 28, target: 24, color: '#e8c267' }, options); const augSecond = $.extend({ value: 30, target: 24, color: '#e55253' }, options); const junThird = $.extend({ value: 35, target: 24, color: '#ebdd8f' }, options); const julThird = $.extend({ value: 24, target: 26, color: '#e8c267' }, options); const augThird = $.extend({ value: 28, target: 22, color: '#e55253' }, options); const junFourth = $.extend({ value: 29, target: 25, color: '#ebdd8f' }, options); const julFourth = $.extend({ value: 24, target: 27, color: '#e8c267' }, options); const augFourth = $.extend({ value: 21, target: 21, color: '#e55253' }, options); $('.june-1').dxBullet(junFirst); $('.july-1').dxBullet(julFirst); $('.august-1').dxBullet(augFirst); $('.june-2').dxBullet(junSecond); $('.july-2').dxBullet(julSecond); $('.august-2').dxBullet(augSecond); $('.june-3').dxBullet(junThird); $('.july-3').dxBullet(julThird); $('.august-3').dxBullet(augThird); $('.june-4').dxBullet(junFourth); $('.july-4').dxBullet(julFourth); $('.august-4').dxBullet(augFourth); });
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DevExtreme Demo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script> <link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.2.5/css/dx.light.css" /> <script src="js/dx.all.js"></script> <link rel="stylesheet" type="text/css" href="styles.css" /> <script src="index.js"></script> </head> <body class="dx-viewport"> <div class="demo-container"> <div class="long-title"><h3>Daily temperature</h3></div> <div id="chart-demo"> <table class="demo-table"> <tr> <th> </th> <th>June</th> <th>July</th> <th>August</th> </tr> <tr> <th>First week</th> <td><div class="bullet june-1"></div></td> <td><div class="bullet july-1"></div></td> <td><div class="bullet august-1"></div></td> </tr> <tr> <th>Second week</th> <td><div class="bullet june-2"></div></td> <td><div class="bullet july-2"></div></td> <td><div class="bullet august-2"></div></td> </tr> <tr> <th>Third week</th> <td><div class="bullet june-3"></div></td> <td><div class="bullet july-3"></div></td> <td><div class="bullet august-3"></div></td> </tr> <tr> <th>Fourth week</th> <td><div class="bullet june-4"></div></td> <td><div class="bullet july-4"></div></td> <td><div class="bullet august-4"></div></td> </tr> </table> </div> </div> </body> </html>
#chart-demo { height: 440px; width: 100%; } .demo-table { margin-top: 80px; width: 100%; border: 1px solid #c2c2c2; border-collapse: collapse; } .demo-table th, .demo-table td { font-weight: 400; width: 200px; padding: 25px 10px 5px 10px; border: 1px solid #e5e5e5; } .demo-table th { padding: 25px 15px 20px 15px; border: 1px solid #c2c2c2; } .demo-table tr:nth-child(2) td { border-top: 1px solid #c2c2c2; } .demo-table td:first-of-type { border-left: 1px solid #c2c2c2; } .demo-table .bullet { width: 200px; height: 30px; } .long-title h3 { font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', 'Trebuchet MS', Verdana; font-weight: 200; font-size: 28px; text-align: center; margin-bottom: 20px; }