Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-react-circular-gaugesyncfusion React circular gauge 前端

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

661

周安装

27

GitHub Stars

1

下载量

212
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-react-circular-gauge(syncfusion React circular gauge 前端)
来源仓库:https://github.com/syncfusion/react-ui-components-skills
仓库路径:skills/syncfusion-react-circular-gauge
安装命令:
npx skills add https://github.com/syncfusion/react-ui-components-skills --skill syncfusion-react-circular-gauge
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/react-ui-components-skills --skill syncfusion-react-circular-gauge

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构。
  • 使用时需结合项目现有设计系统、路由和构建方式,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • syncfusion-react-circular-gauge 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing Syncfusion React Circular Gauge

When to Use This Skill

Use the Circular Gauge component when you need to:

  • Display measurements on a circular scale (speedometers, temperature gauges, fuel indicators)
  • Monitor KPIs and metrics in dashboards (business metrics, sensor readings)
  • Visualize progress or percentages in a circular format
  • Show real-time data with animated pointer updates
  • Create responsive data visualizations with multiple pointers and ranges
  • Print or export gauge visualizations for reports

The Circular Gauge is ideal for applications requiring visual representation of values on a circular scale with customizable appearance, animations, and interactivity.


Component Overview

Syncfusion React Circular Gauge (@syncfusion/ej2-react-circulargauge) is a data visualization component that displays values on a circular scale. It consists of:

  • Axes - The circular scale tracks with customizable angles, direction, and styling
  • Pointers - Value indicators in three types: Needle (default), RangeBar, or Marker
  • Ranges - Colored segments representing value ranges (e.g., 0-25%, 25-50%)
  • Annotations - Text or image overlays for labels and callouts
  • Legend - Optional legend displaying range meanings
  • Export - Print, PDF, PNG, or SVG export capabilities

Documentation and Navigation Guide

Choose the reference based on what you need to implement:

Getting Started & Setup

📄 Read: references/getting-started.md

  • Install @syncfusion/ej2-react-circulargauge package
  • Setup in Vite or Create React App
  • Basic component initialization
  • Minimal working example
  • CSS imports and themes
  • When to read: First time setup or new project integration

Gauge Structure: Axes, Pointers & Ranges

📄 Read: references/axes-pointers-ranges.md

  • Configure axes (angles, direction, styling)
  • Add and customize pointers (Needle, RangeBar, Marker types)
  • Define ranges with colors and labels
  • Multiple axes and pointers
  • When to read: Building the core gauge structure and data visualization

Visual Appearance & Dimensions

📄 Read: references/appearance-dimensions.md

  • Add titles and customize styling
  • Position gauge (centerX, centerY)
  • Set dimensions (width, height, margin)
  • Apply backgrounds, borders, color schemes
  • Responsive design
  • When to read: Customizing gauge look, sizing, and layout

Annotations & Legend

📄 Read: references/annotations-legend.md

  • Add text annotations
  • Add image annotations
  • Position annotations
  • Display and customize legend
  • Handle legend interactions
  • When to read: Adding labels, callouts, or explanatory elements

Advanced Features

📄 Read: references/advanced-features.md

  • Animation effects and timing
  • User interaction (events, tooltips)
  • Print and export to PDF/PNG/SVG
  • Real-time data binding
  • Multiple gauge instances
  • When to read: Adding interactions, animations, or export functionality

API Reference

📄 Read: references/api-reference.md

  • Component props, events, methods, and child directive reference
  • Quick lookup for commonly used props, methods and event args
  • When to read: When you need exact API names, types or method signatures

Accessibility & Internationalization

📄 Read: references/accessibility-i18n.md

  • WCAG 2.1 compliance and ARIA support
  • Screen reader compatibility
  • Keyboard navigation
  • RTL language support
  • Localization and culture settings
  • When to read: Making gauges accessible or supporting multiple languages

Common Patterns & Use Cases

📄 Read: references/common-patterns.md

  • Speedometer pattern
  • Progress/percentage gauge pattern
  • Temperature/sensor monitoring
  • Multi-pointer dashboards
  • Real-time updates with animations
  • Performance tips and troubleshooting
  • When to read: Looking for common implementations or solving issues

Quick Start Example

Here's a minimal working example to get started:

import React from 'react';
import { CircularGaugeComponent, AxesDirective, AxisDirective,
         PointersDirective, PointerDirective, RangesDirective, RangeDirective }
  from '@syncfusion/ej2-react-circulargauge';

export function App() {
  return (
    <div style={{ height: '500px' }}>
      <CircularGaugeComponent
        title="Speedometer"
        centerX="50%"
        centerY="50%"
      >
        <AxesDirective>
          <AxisDirective
            startAngle={270}
            endAngle={90}
            minimum={0}
            maximum={100}
          >
            <RangesDirective>
              <RangeDirective start={0} end={30} color='#1E7145' />
              <RangeDirective start={30} end={60} color='#F7D900' />
              <RangeDirective start={60} end={100} color='#C1192B' />
            </RangesDirective>

            <PointersDirective>
              <PointerDirective
                value={65}
                type='Needle'
                radius='70%'
              />
            </PointersDirective>
          </AxisDirective>
        </AxesDirective>
      </CircularGaugeComponent>
    </div>
  );
}

Install the package first:

npm install @syncfusion/ej2-react-circulargauge --save

Common Patterns

Pattern 1: Simple Progress Indicator

<CircularGaugeComponent>
  <AxesDirective>
    <AxisDirective minimum={0} maximum={100}>
      <RangesDirective>
        <RangeDirective start={0} end={50} color='#E8E8E8' />
        <RangeDirective start={50} end={100} color='#4CAF50' />
      </RangesDirective>
      <PointersDirective>
        <PointerDirective value={75} type='RangeBar' />
      </PointersDirective>
    </AxisDirective>
  </AxesDirective>
</CircularGaugeComponent>

Pattern 2: Multi-Pointer Dashboard

Use multiple pointers on the same axis to compare values:

<PointersDirective>
  <PointerDirective value={45} type='Needle' />
  <PointerDirective value={60} type='Marker' />
</PointersDirective>

Pattern 3: Real-Time Updates

const [value, setValue] = useState(50);

// Update pointer value on interval
useEffect(() => {
  const timer = setInterval(() => {
    setValue(prev => (prev + Math.random() * 10) % 100);
  }, 1000);
  return () => clearInterval(timer);
}, []);

// Bind value to pointer
<PointerDirective value={value} />

Key Configuration Props

PropTypePurpose
titlestringGauge title displayed at top
centerX / centerYstringPosition (% or px)
startAngle / endAnglenumberAxis sweep degrees (0-360)
minimum / maximumnumberAxis scale range
value (pointer)numberCurrent pointer value
type (pointer)'Needle' \'RangeBar' \'Marker'Pointer visualization type
radius (pointer)stringPointer length (% or px)
colorstringElement color (hex, rgb, name)
direction'ClockWise' \'AntiClockWise'Axis direction
animationDurationnumberAnimation time in milliseconds

For the complete API listing (all component props, events, methods and child directives) see: references/api-reference.md

Common Use Cases

  1. Speedometer/Speed Monitor - Display vehicle speed with colored ranges
  2. Temperature Gauge - Monitor temperature with hot/cold indicators
  3. Performance KPI - Show system metrics or business KPIs
  4. Fuel/Battery Level - Visualize resource consumption
  5. Network Traffic - Display bandwidth usage in real-time
  6. Sports/Gaming Scores - Show player stats or game progress
  7. Industrial Monitoring - Sensor data visualization
  8. Percentage/Progress - Alternative circular progress visualization

Next Steps

  1. Start with Getting Started to set up your first gauge
  2. Build structure using Axes, Pointers & Ranges reference
  3. Customize appearance with styling reference
  4. Add interactions with Advanced Features reference
  5. Test accessibility using Accessibility reference
  6. Reference common patterns for implementation ideas

For more details or advanced scenarios, consult the specific reference files linked above.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.26%
按下载量换算77

Claude

27.32%
按下载量换算58

Cursor

19.08%
按下载量换算40

Gemini CLI

9.02%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills