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

syncfusion-winforms-bullet-graph同步融合 winforms 项目符号图

Agent Skill

syncfusion-winforms-bullet-graph 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

698

周安装

30

GitHub Stars

1

下载量

245
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/winforms-ui-components-skills --skill syncfusion-winforms-bullet-graph

简介

用于处理 WinForms Bullet Graph 相关的协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态进行整理。
  • 通过 GitHub 安装,需结合来源仓库文档使用。
  • 建议确认权限范围和维护状态后再使用。
  • syncfusion-winforms-bullet-graph 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing Syncfusion Windows Forms Bullet Graph

Expert guidance for implementing the Syncfusion Bullet Graph control in Windows Forms applications. The Bullet Graph is a compact, space-efficient data visualization control designed for dashboards, replacing traditional gauges and meters. It displays a primary measure (featured measure) compared to a target (comparative measure) within qualitative performance ranges.

When to Use This Skill

Use this skill when you need to:

  • Display KPIs (Key Performance Indicators) in a compact dashboard layout
  • Show current performance against targets (actual vs goal)
  • Visualize data with performance ranges (poor, satisfactory, good)
  • Create revenue analysis or expense tracking visualizations
  • Replace traditional gauges and meters with space-efficient alternatives
  • Compare actual values to benchmarks or targets
  • Build executive dashboards requiring high information density
  • Implement year-to-date (YTD) metrics visualization

Component Overview

The Bullet Graph consists of:

  • Featured Measure: Primary data bar showing the current value (e.g., actual revenue)
  • Comparative Measure: Target line showing the goal or benchmark (e.g., target revenue)
  • Qualitative Ranges: Background bands indicating performance levels (e.g., poor, satisfactory, good)
  • Quantitative Scale: Axis with ticks and labels showing numeric values
  • Caption: Label describing what the graph represents

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Assembly deployment and NuGet package installation
  • Creating Bullet Graph programmatically in code
  • Using Syncfusion Reference Manager for Visual Studio integration
  • Basic initialization and first working example
  • Required namespaces and assemblies

Measures (Featured and Comparative)

📄 Read: references/measures.md

  • Featured measure: primary data bar configuration
  • Featured measure customization (color, thickness)
  • Comparative measure: target line configuration
  • Comparative measure customization (symbol color, thickness)
  • Visual hierarchy and positioning

Qualitative Ranges

📄 Read: references/qualitative-ranges.md

  • Adding and configuring qualitative ranges collection
  • Range properties (RangeEnd, RangeStroke, RangeCaption)
  • Customizing range size and opacity
  • Binding range colors to ticks and labels
  • Performance indicator patterns (good, satisfactory, poor)

Scale Ticks

📄 Read: references/scale-and-ticks.md

  • Major ticks and minor ticks configuration
  • Tick customization (stroke, size, thickness)
  • Tick positioning (Above, Below, Cross)
  • Interval and MinorTicksPerInterval settings
  • Visual customization examples

Scale Labels

📄 Read: references/scale-labels.md

  • Label properties and numeric values
  • Label customization (font size, color, offset)
  • Label formatting patterns (LabelFormat)
  • Label positioning (Above, Below)

Layout and Orientation

📄 Read: references/layout-and-orientation.md

  • Orientation (Horizontal, Vertical)
  • Flow direction (Forward, Backward)
  • Caption and caption positioning (Near, Far)
  • Quantitative scale length customization
  • Layout properties and docking

Quick Start Example

using System;
using System.Drawing;
using System.Windows.Forms;
using Syncfusion.Windows.Forms.BulletGraph;

namespace BulletGraphDemo
{
    public class MainForm : Form
    {
        public MainForm()
        {
            // Create Bullet Graph
            BulletGraph bullet = new BulletGraph();
            bullet.Dock = DockStyle.Fill;

            // Set orientation and flow
            bullet.FlowDirection = BulletGraphFlowDirection.Forward;
            bullet.Orientation = Orientation.Horizontal;

            // Configure measures
            bullet.FeaturedMeasure = 4.5;      // Actual value
            bullet.ComparativeMeasure = 7;     // Target value

            // Configure scale
            bullet.Minimum = 0;
            bullet.Maximum = 10;
            bullet.Interval = 2;
            bullet.MinorTicksPerInterval = 3;

            // Add qualitative ranges
            bullet.QualitativeRanges.Add(new QualitativeRange()
            {
                RangeEnd = 4,
                RangeCaption = "Bad",
                RangeStroke = Color.Red
            });

            bullet.QualitativeRanges.Add(new QualitativeRange()
            {
                RangeEnd = 7,
                RangeCaption = "Satisfactory",
                RangeStroke = Color.Yellow
            });

            bullet.QualitativeRanges.Add(new QualitativeRange()
            {
                RangeEnd = 10,
                RangeCaption = "Good",
                RangeStroke = Color.Green
            });

            // Add caption
            bullet.Caption = "Revenue YTD\n$ in thousands";

            // Add to form
            this.Controls.Add(bullet);
        }
    }
}

Common Patterns

Revenue Tracking Dashboard

BulletGraph revenueGraph = new BulletGraph();
revenueGraph.Dock = DockStyle.Top;
revenueGraph.Height = 100;
revenueGraph.Caption = "Revenue YTD\n$ in thousands";
revenueGraph.CaptionPosition = BulletGraphCaptionPosition.Near;

// Set actual vs target
revenueGraph.FeaturedMeasure = 275;     // Actual: $275k
revenueGraph.ComparativeMeasure = 300;  // Target: $300k

// Configure scale
revenueGraph.Minimum = 0;
revenueGraph.Maximum = 400;
revenueGraph.Interval = 100;
revenueGraph.LabelFormat = "$#0K";

// Performance ranges
revenueGraph.QualitativeRanges.Add(new QualitativeRange()
    { RangeEnd = 200, RangeStroke = Color.FromArgb(255, 200, 200) });  // Poor
revenueGraph.QualitativeRanges.Add(new QualitativeRange()
    { RangeEnd = 300, RangeStroke = Color.FromArgb(255, 255, 200) });  // Fair
revenueGraph.QualitativeRanges.Add(new QualitativeRange()
    { RangeEnd = 400, RangeStroke = Color.FromArgb(200, 255, 200) });  // Good

Vertical KPI Display

BulletGraph kpiGraph = new BulletGraph();
kpiGraph.Orientation = Orientation.Vertical;
kpiGraph.FlowDirection = BulletGraphFlowDirection.Backward;
kpiGraph.Dock = DockStyle.Left;
kpiGraph.Width = 150;

kpiGraph.Caption = "Customer\nSatisfaction";
kpiGraph.CaptionPosition = BulletGraphCaptionPosition.Far;

kpiGraph.FeaturedMeasure = 8.5;   // Current score
kpiGraph.ComparativeMeasure = 9;  // Target score

kpiGraph.Minimum = 0;
kpiGraph.Maximum = 10;
kpiGraph.Interval = 2;

Styled Bullet Graph with Custom Colors

BulletGraph styledGraph = new BulletGraph();

// Customize featured measure bar
styledGraph.FeaturedMeasure = 65;
styledGraph.FeaturedMeasureBarStroke = Color.DarkBlue;
styledGraph.FeaturedMeasureBarStrokeThickness = 8;

// Customize comparative measure
styledGraph.ComparativeMeasure = 80;
styledGraph.ComparativeMeasureSymbolStroke = Color.Red;
styledGraph.ComparativeMeasureSymbolStrokeThickness = 3;

// Customize ticks and labels
styledGraph.MajorTickStroke = Color.Black;
styledGraph.MajorTickSize = 15;
styledGraph.MinorTickStroke = Color.Gray;
styledGraph.MinorTickSize = 10;
styledGraph.LabelFontSize = 12;
styledGraph.LabelStroke = Color.Black;

Multiple Bullet Graphs in Dashboard

// Stack multiple bullet graphs vertically
BulletGraph[] metrics = new BulletGraph[3];
string[] captions = { "Sales\n$ in thousands", "Profit\n$ in thousands", "Customers\ncount" };
double[] actuals = { 275, 45, 1250 };
double[] targets = { 300, 50, 1500 };

for (int i = 0; i < 3; i++)
{
    metrics[i] = new BulletGraph();
    metrics[i].Dock = DockStyle.Top;
    metrics[i].Height = 80;
    metrics[i].Caption = captions[i];
    metrics[i].FeaturedMeasure = actuals[i];
    metrics[i].ComparativeMeasure = targets[i];

    // Add standard ranges
    metrics[i].QualitativeRanges.Add(new QualitativeRange()
        { RangeEnd = targets[i] * 0.6, RangeStroke = Color.LightCoral });
    metrics[i].QualitativeRanges.Add(new QualitativeRange()
        { RangeEnd = targets[i] * 0.9, RangeStroke = Color.LightYellow });
    metrics[i].QualitativeRanges.Add(new QualitativeRange()
        { RangeEnd = targets[i] * 1.2, RangeStroke = Color.LightGreen });

    this.Controls.Add(metrics[i]);
}

Key Properties Reference

Measures

PropertyTypeDescription
FeaturedMeasuredoublePrimary value to display (current/actual)
FeaturedMeasureBarStrokeColorColor of the featured measure bar
FeaturedMeasureBarStrokeThicknessintThickness of the featured measure bar
ComparativeMeasuredoubleTarget or benchmark value
ComparativeMeasureSymbolStrokeColorColor of the comparative measure line
ComparativeMeasureSymbolStrokeThicknessintThickness of the comparative measure line

Scale

PropertyTypeDescription
MinimumdoubleStarting value of the scale
MaximumdoubleEnding value of the scale
IntervaldoubleSpacing between major ticks
MinorTicksPerIntervalintNumber of minor ticks between major ticks

Layout

PropertyTypeDescription
OrientationOrientationHorizontal or Vertical display
FlowDirectionBulletGraphFlowDirectionForward or Backward flow
CaptionstringLabel describing the metric
CaptionPositionBulletGraphCaptionPositionNear or Far caption placement

Ranges

PropertyTypeDescription
QualitativeRangesQualitativeRangeCollectionCollection of qualitative range objects
QualitativeRangesSizeintWidth/height of the range bands

Common Use Cases

  1. Executive Dashboards: Display multiple KPIs in compact space
  2. Financial Reports: Revenue, profit, and expense tracking
  3. Sales Performance: Quota attainment visualization
  4. Customer Metrics: Satisfaction scores, retention rates
  5. Operational KPIs: Efficiency, throughput, quality metrics
  6. Project Management: Budget vs actual, schedule performance
  7. Manufacturing: Production targets, defect rates, utilization

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.04%
按下载量换算83

Claude

32.08%
按下载量换算79

Cursor

20.67%
按下载量换算51

Gemini CLI

8.68%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills