Sign In

@kjanat/react-gauge-component

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kjanat/react-gauge-component

A customizable gauge/speedometer component for React applications

latest
Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
8
-46.67%
Maintainers
1
Weekly downloads
 
Created
Source

React Gauge Component

A customizable, animated gauge/speedometer component for React applications. Perfect for dashboards, analytics displays, and progress indicators.

Features

  • 🎨 Fully customizable appearance
  • 📊 Multiple display modes (percentage, value, custom)
  • 🌈 Configurable color segments
  • 📏 Adjustable size and thickness
  • 🎯 Smooth needle animations
  • 📱 Responsive design
  • 💪 TypeScript support
  • 🪶 Lightweight with no dependencies

Installation

npm version

npm install @kjanat/react-gauge-component
# or
yarn add @kjanat/react-gauge-component
# or
pnpm add @kjanat/react-gauge-component

Quick Start

import { Gauge } from '@kjanat/react-gauge-component';
import '@kjanat/react-gauge-component/dist/styles.css';

function App() {
  return <Gauge value={75} min={0} max={100} label="Performance" />;
}

Props

PropTypeDefaultDescription
valuenumber2.5Current value to display
minnumber0Minimum value of the gauge
maxnumber5Maximum value of the gauge
labelstring''Label text displayed below the gauge
displayType'percentage' | 'value' | 'custom''percentage'How to display the current value
customDisplay(value: number) => stringnullCustom function to format the display value
tickIntervalnumber1Interval between tick marks
showTicksbooleantrueWhether to show tick marks and labels
colorsstring[]['#22c55e', '#10b981', '#84cc16', '#eab308', '#f59e0b', '#ef4444']Array of colors for gauge segments
sizenumber300Width of the gauge in pixels
thicknessnumber40Thickness of the gauge arc
classNamestring''Additional CSS class for styling
lightThemeThemeColorsSee belowCustom colors for light mode
darkThemeThemeColorsSee belowCustom colors for dark mode
autoDetectThemebooleantrueAutomatically detect and apply dark mode
showTextOutlinebooleantrueShow text outline effect on value text

Examples

Basic Usage

<Gauge value={3.5} min={0} max={5} label="Score" />

Percentage Display

<Gauge value={75} min={0} max={100} label="Progress" displayType="percentage" />

Custom Display Format

<Gauge
  value={85}
  min={0}
  max={100}
  label="Speed"
  displayType="custom"
  customDisplay={(val) => `${val} km/h`}
/>

Custom Colors

<Gauge
  value={7}
  min={0}
  max={10}
  label="Rating"
  colors={['#ef4444', '#f59e0b', '#22c55e']}
  tickInterval={2}
/>

Different Sizes

// Small gauge
<Gauge value={50} size={200} thickness={30} />

// Large gauge
<Gauge value={50} size={400} thickness={60} />

Dark Mode Support

The component automatically detects dark mode based on:

  • Tailwind's dark class on <html> or <body>
  • System preference via prefers-color-scheme: dark
// Automatic dark mode detection (default)
<Gauge value={3.5} min={0} max={5} />

// Custom theme colors
<Gauge
  value={3.5}
  min={0}
  max={5}
  lightTheme={{
    background: '#f3f4f6',
    tickColor: '#6b7280',
    needleColor: '#111827',
    needleCenter: '#e5e7eb',
    textOutline: '#ffffff'
  }}
  darkTheme={{
    background: '#111827',
    tickColor: '#d1d5db',
    needleColor: '#f9fafb',
    needleCenter: '#4b5563',
    textOutline: '#000000'
  }}
/>

// Disable automatic theme detection
<Gauge value={3.5} autoDetectTheme={false} />

ThemeColors Interface

interface ThemeColors {
  background?: string;      // Inner arc background
  tickColor?: string;       // Tick marks color
  needleColor?: string;     // Needle body color
  needleCenter?: string;    // Needle center dot color
  textOutline?: string;     // Text outline effect color
  valueTextColor?: string;  // Value text color (auto-contrasts with background if not set)
}

Styling

The component comes with default styles that you need to import:

import '@kjanat/react-gauge-component/dist/styles.css';

You can override the default styles using the className prop or by targeting the component's CSS classes:

  • .gauge-container - Main container
  • .gauge-svg - SVG element
  • .gauge-tick-label - Tick mark labels
  • .gauge-value - Value display
  • .gauge-label - Label text

Development

# Install dependencies
pnpm install

# Run development server with examples
pnpm dev

# Build the library
pnpm build:lib

# Type checking
pnpm type-check

# Run linting
pnpm lint

# Run unit tests
pnpm test

# Run E2E tests
pnpm test:e2e

Testing

This project includes comprehensive test coverage:

Unit Tests

Unit tests are written with Vitest and React Testing Library:

# Run tests once
pnpm test

# Run tests in watch mode
pnpm test:watch

# Run tests with UI
pnpm test:ui

# Run tests with coverage
pnpm test:coverage

E2E Tests

End-to-end tests are written with Playwright to verify dark mode functionality across browsers:

# Run E2E tests
pnpm test:e2e

# Run E2E tests with UI mode
pnpm test:e2e:ui

# Debug E2E tests
pnpm test:e2e:debug

# Show test report
pnpm test:e2e:report

The E2E tests verify:

  • Dark mode detection and theme switching
  • Color values in different themes
  • Text visibility and contrast
  • Manual theme override behavior
  • Cross-browser compatibility (Chrome, Firefox, Safari)

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

License

MIT © Kaj Kowalski

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  • Fork the repository
  • Create your feature branch (git checkout -b feature/amazing-feature)
  • Commit your changes (git commit -m 'Add some amazing feature')
  • Push to the branch (git push origin feature/amazing-feature)
  • Open a Pull Request

Changelog

1.0.0

  • Initial release
  • Basic gauge functionality
  • TypeScript support
  • Multiple display modes
  • Customizable colors and sizes

Keywords

react

FAQs

Package last updated on 23 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts