PHPackages                             kainiklas/filament-gauge - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. kainiklas/filament-gauge

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

kainiklas/filament-gauge
========================

Gauge Chart for FilamentPHP

v0.2.0(2y ago)481[2 PRs](https://github.com/kainiklas/filament-gauge/pulls)MITPHPPHP ^8.1

Since Feb 2Pushed 1y ago1 watchersCompare

[ Source](https://github.com/kainiklas/filament-gauge)[ Packagist](https://packagist.org/packages/kainiklas/filament-gauge)[ Docs](https://github.com/kainiklas/filament-gauge)[ GitHub Sponsors](https://github.com/kainiklas)[ RSS](/packages/kainiklas-filament-gauge/feed)WikiDiscussions main Synced yesterday

READMEChangelog (3)Dependencies (13)Versions (6)Used By (0)

Filament Gauge
==============

[](#filament-gauge)

[![Latest Version on Packagist](https://camo.githubusercontent.com/6f3552045a28ba613b8a339ff1bb644f17a50873a82a6f778787f227b57cfc18/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6b61696e696b6c61732f66696c616d656e742d67617567652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kainiklas/filament-gauge)[![GitHub Tests Action Status](https://camo.githubusercontent.com/9344ee1a0ea6818cc2a5727cf47a8fdb260d036f285a5ab58ca44e39f97127b0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6b61696e696b6c61732f66696c616d656e742d67617567652f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/kainiklas/filament-gauge/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/c2cdeb2193c026c17419e596a53923af576d14250a65dded4d028af08e5270fb/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6b61696e696b6c61732f66696c616d656e742d67617567652f6669782d7068702d636f64652d7374796c696e672e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/kainiklas/filament-gauge/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/e38e1d24cab3eaee9bd0d13276f0435351a8df4337cf0f8db380224b1df70158/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b61696e696b6c61732f66696c616d656e742d67617567652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kainiklas/filament-gauge)

[![Filament Gauge](https://raw.githubusercontent.com/kainiklas/filament-gauge/main/art/filament-gauge.jpg)](https://raw.githubusercontent.com/kainiklas/filament-gauge/main/art/filament-gauge.jpg)

SVG gauge for filament.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require kainiklas/filament-gauge
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="filament-gauge-views"
```

Usage
-----

[](#usage)

You can render any numeric value between `0` and `100`. The value is rounded. If the value is outside these ranges, you can normalize it with the `upperBound()` method, e.g., values between `0` and `1` need to be bounded by `upperBound(1)` and values between `0` and `50` need to be bounded by `upperBound(50)`.

```
use Kainiklas\FilamentGauge\Enums\GaugeSize;
use Kainiklas\FilamentGauge\Tables\Columns\Gauge;

InlineGauge::make('number')
    // circle size (SM, MD, XL)
    // default: SM
    ->size(Size::MD)

    // hides the number in the middle of the circle
    ->valueHidden()

    // set an upper bound to calculate correct percentages
    // this should be the highest possible value
    // default: 100, which means values between 0 and 100
    // example: values between 0 and 1 -> set it to 1
    ->upperBound(1)
```

Customize Style
---------------

[](#customize-style)

You can customize the style of the component with the following css hook classes:

```
/* arc, representing the value */
.fi-inline-gauge-section-color {
    @apply text-primary-600
}
```

```
/* full circle (the background) */
.fi-inline-gauge-shape-color {
    @apply text-gray-300 dark:text-gray-700
}
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Kai](https://github.com/kainiklas)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance26

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 91.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

882d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/9416642?v=4)[Kai Niklas](/maintainers/kainiklas)[@kainiklas](https://github.com/kainiklas)

---

Top Contributors

[![kainiklas](https://avatars.githubusercontent.com/u/9416642?v=4)](https://github.com/kainiklas "kainiklas (21 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")

---

Tags

laraveltablechartgaugeinlinefilamentfilamentphpcolumnkainiklasfilament-gauge

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/kainiklas-filament-gauge/health.svg)

```
[![Health](https://phpackages.com/badges/kainiklas-filament-gauge/health.svg)](https://phpackages.com/packages/kainiklas-filament-gauge)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

128192.3k3](/packages/dotswan-filament-map-picker)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274325.8k8](/packages/croustibat-filament-jobs-monitor)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
