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

syncfusion-react-treemapssyncfusion React treemaps 前端

Agent Skill

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

总安装

661

周安装

27

GitHub Stars

1

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于辅助 React 树图组件的开发与维护。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中生成或审查前端图表代码。
  • 通过 GitHub 安装,需结合项目现有设计系统使用。
  • 涉及页面改动时应配合本地预览确认视觉效果。
  • syncfusion-react-treemaps 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing Syncfusion React TreeMap

A comprehensive guide for implementing and customizing the Syncfusion React TreeMap component for hierarchical data visualization. The TreeMap displays nested rectangles where area represents data values, supporting multiple hierarchy levels, interactive drill-down, and rich customization.

When to Use This Skill

Use this skill when you need to:

  • Install and set up the TreeMap component
  • Bind hierarchical or flat data to TreeMap
  • Visualize tree-structured data with multiple levels
  • Implement drill-down interactions for data exploration
  • Apply color mapping strategies (range, equal, desaturation)
  • Configure layouts (square, horizontal, vertical, auto)
  • Add legends, tooltips, and data labels
  • Implement selection and highlight features
  • Customize leaf items and label positioning
  • Handle accessibility requirements
  • Export or print TreeMap visualizations
  • Internationalize or apply RTL support

Component Overview

The TreeMap component is a powerful hierarchical data visualization tool that:

  • Renders nested rectangles using SVG for scalability
  • Supports any number of hierarchy levels
  • Provides four layout algorithms for optimal space utilization
  • Enables drill-down for exploring nested data
  • Offers three color mapping types for data-driven styling
  • Includes interactive features: selection, highlight, tooltips
  • Supports data labels, legends, and custom templates
  • Provides accessibility and internationalization support

When to Choose TreeMap

Choose TreeMap when:

  • Visualizing hierarchical data (organizational charts, file systems, category hierarchies)
  • Comparing multiple values across categories using area encoding
  • Exploring nested categories through drill-down interaction
  • Displaying tree-structured data with many items at multiple levels
  • Need space-efficient visualization that uses area encoding

Don't use TreeMap for:

  • Simple flat data with few items (use Bar/Column charts)
  • Time-series data (use Line/Area charts)
  • Relationships between entities (use Diagram/Graph)
  • Single hierarchy with few nodes (consider alternative layouts)

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installing @syncfusion/ej2-react-treemap
  • Package dependencies and setup
  • Module injection for features
  • Creating your first TreeMap
  • Rendering basic hierarchical data

Data Binding & Hierarchies

📄 Read: references/data-binding.md

  • Flat vs hierarchical data structures
  • Configuring weightValuePath for sizing
  • Binding multilevel hierarchies with levels
  • Remote data source integration
  • Data transformation patterns

Color Mapping Strategies

📄 Read: references/color-mapping.md

  • Range-based color mapping (gradient by values)
  • Equal value color mapping (categorical colors)
  • Desaturation mapping (opacity-based variation)
  • Dynamic color assignment
  • Choosing color mapping strategies

Layouts and Layout Selection

📄 Read: references/layouts.md

  • Square layout (balanced aspect ratio)
  • Horizontal layout (left-to-right ordering)
  • Vertical layout (top-to-bottom ordering)
  • Auto layout (default optimal layout)
  • When to use each layout type

Drill-Down and Navigation

📄 Read: references/drilldown.md

  • Enabling drill-down with enableDrillDown
  • Configuring levels for multi-level exploration
  • Drill-down events and callbacks
  • Breadcrumb navigation patterns
  • Back navigation handling

Leaf Items, Labels & Templates

📄 Read: references/leaf-items-and-labels.md

  • Leaf item configuration and styling
  • Label positioning (TopLeft, Center, BottomRight, etc.)
  • Data label formatting and templates
  • Border and fill customization
  • Label overflow handling

Legends, Tooltips & Selection

📄 Read: references/legends-tooltips-selection.md

  • Creating and configuring legends
  • Tooltip templates and styling
  • Selection and highlight modes
  • Interactive features and events
  • Responding to user interactions

Customization, Accessibility & Export

📄 Read: references/customization-accessibility.md

  • WCAG compliance and keyboard navigation
  • RTL (right-to-left) support
  • Internationalization and localization
  • Theming and CSS customization
  • Print and export functionality

Quick Start Example

import * as React from 'react';
import { TreeMapComponent } from '@syncfusion/ej2-react-treemap';

export function TreeMapDemo() {
  const data = [
    { Title: 'USA', State: 'California', Sales: 2830 },
    { Title: 'USA', State: 'Texas', Sales: 2020 },
    { Title: 'USA', State: 'Florida', Sales: 1880 },
    { Title: 'Germany', State: 'Berlin', Sales: 1880 },
    { Title: 'Germany', State: 'Munich', Sales: 1550 },
  ];

  return (
    <TreeMapComponent
      height="350px"
      dataSource={data}
      weightValuePath="Sales"
      leafItemSettings={{
        labelPath: 'State',
        colorMapping: [
          { from: 1500, to: 2000, color: '#FF6B6B' },
          { from: 2000, to: 2500, color: '#4ECDC4' },
          { from: 2500, to: 3000, color: '#45B7D1' }
        ]
      }}
    />
  );
}

Common Patterns

Pattern 1: Hierarchical Data with Drill-Down

<TreeMapComponent
  enableDrillDown={true}
  dataSource={data}
  weightValuePath="Sales"
>
  <LevelsDirective>
    <LevelDirective groupPath="Country" />
    <LevelDirective groupPath="State" />
    <LevelDirective groupPath="City" />
  </LevelsDirective>
</TreeMapComponent>

When to use: Exploring multilevel hierarchies with progressive disclosure through drill-down interaction.

Pattern 2: Color-Coded Categories

<TreeMapComponent
  equalColorValuePath="Category"
  leafItemSettings={{
    colorMapping: [
      { value: 'Electronics', color: '#3498db' },
      { value: 'Furniture', color: '#e74c3c' },
      { value: 'Clothing', color: '#2ecc71' }
    ]
  }}
/>

When to use: Categorizing items with distinct colors for quick visual identification.

Pattern 3: Value-Range Color Gradient

<TreeMapComponent
  rangeColorValuePath="Sales"
  leafItemSettings={{
    colorMapping: [
      { from: 0, to: 10000, color: '#90EE90' },
      { from: 10000, to: 50000, color: '#FFD700' },
      { from: 50000, to: 100000, color: '#FF6347' }
    ]
  }}
/>

When to use: Showing magnitude differences through color intensity for performance metrics, sales, or other continuous values.

Key Props and Configuration

PropPurposeCommon Values
dataSourceHierarchical or flat data arrayArray of objects
weightValuePathProperty path for item sizinge.g., 'Sales', 'Count'
equalColorValuePathProperty for categorical coloringe.g., 'Category', 'Type'
rangeColorValuePathProperty for range-based coloringe.g., 'Sales', 'Value'
enableDrillDownEnable click-to-drill interactiontrue/false
layoutTypeSpatial layout algorithm'Squarified', 'Horizontal', 'Vertical', 'SliceAndDice'
heightComponent heighte.g., '350px', '100%'
paletteArray of colors for items['#color1', '#color2',...]

Common Use Cases

API Reference

This section summarizes the most commonly used TreeMap props, methods, and events. For the complete API with typed models, see the official docs: https://ej2.syncfusion.com/react/documentation/api/treemap/index-default

Important Properties (selected)

  • dataSource (Array|DataManager) — The data source for TreeMap. Can be flat or hierarchical. Default: null
  • weightValuePath (string) — Path to numeric value used for sizing each item. Default: null
  • colorValuePath (string) — Field used for continuous color mapping (range palettes).
  • equalColorValuePath (string[]) — Field(s) for categorical/equal color mapping.
  • rangeColorValuePath (string[]) — Field(s) used for range-based color mapping.
  • leafItemSettings (object) — Configuration for leaf items (e.g., labelPath, colorMapping, border, gap).
  • levels (LevelSettingsModel[]) — Array of level configuration objects to define grouping and appearance per hierarchy level.
  • layoutType (string) — Layout algorithm: Squarified (default), SliceAndDiceHorizontal, SliceAndDiceVertical, SliceAndDiceAuto, etc.
  • enableDrillDown (boolean) — Enable drill-down interaction. Default: false
  • drillDownView (boolean) — Use drill-down view layout. Default: false
  • enableBreadcrumb (boolean) — Show breadcrumb when drilling. Default: false
  • breadcrumbConnector (string) — Separator shown between breadcrumb items.
  • initialDrillDown (object) — Configure initial drill-down level/state.
  • enableHtmlSanitizer (boolean) — Sanitize HTML in templates/tooltips. Default: true
  • enablePersistence (boolean) — Persist component state between reloads. Default: false
  • enableRtl (boolean) — Enable right-to-left rendering. Default: false
  • palette (string[]) — Array of palette colors used for fills.
  • highlightSettings (object) — Highlight configuration and styling.
  • selectionSettings (object) — Selection configuration (mode, enable, etc.).
  • legendSettings (object) — Legend configuration (position, title, shape, etc.).
  • titleSettings (object) — Title and subtitle configuration.
  • tooltipSettings (object) — Tooltip templates and behavior.
  • format (string) — Formatting string for labels or values.
  • useGroupingSeparator (boolean) — Apply grouping separator for numeric values. Default: true
  • description (string) — Accessibility description for the TreeMap.
  • margin (object) — Margin settings for the component ({top, right, bottom, left}).
  • height / width (string|number) — Size of the component (e.g., 350px or 100%).
  • theme (string) — Theme name (e.g., Material, Bootstrap).

Common Methods

  • destroy() — Clean up the TreeMap instance and remove listeners.
  • export(type, fileName, orientation, allowDownload) — Export the TreeMap as PNG|JPEG|SVG|PDF. Returns a Promise for PDF export flows.
  • print(id) — Print TreeMap content by element id, DOM element, or array of ids.
  • doubleClickOnTreeMap(e) — Programmatically trigger double-click behavior.
  • selectItem(levelOrder, isSelected) — Select or deselect an item by level order array.

Common Events

  • load / loaded — Lifecycle events fired before/after component load.
  • itemRendering — Fired while items are rendered; use to customize item appearance.
  • click / itemClick — Fired on item click.
  • doubleClick — Fired on item double click.
  • drillStart / drillEnd — Fired when drill-down starts/ends.
  • itemHighlight / itemSelected — Events for highlight/selection lifecycle.
  • legendRendering / legendItemRendering — Events during legend rendering.
  • tooltipRendering — Fired when tooltip content is prepared.
  • resize — Fired on component resize.
  • beforePrint / print — Hooks around printing/export.

Quick Import Example

import { TreeMapComponent, LevelsDirective, LevelDirective, Inject, TreeMapTooltip } from '@syncfusion/ej2-react-treemap';

<TreeMapComponent dataSource={data} weightValuePath="value" enableDrillDown={true}>
  <LevelsDirective>
    <LevelDirective groupPath="category" />
  </LevelsDirective>
  <Inject services={[TreeMapTooltip]} />
</TreeMapComponent>
  1. Organization Hierarchies: Visualize employee counts across departments, regions, and divisions
  2. File System Browser: Display disk usage by folders and subfolders with drill-down
  3. Sales Performance: Compare regional sales, product categories, and territories
  4. Website Analytics: Explore traffic sources, pages, and user segments hierarchically
  5. Portfolio Allocation: Visualize asset distribution across categories and subcategories
  6. Market Share: Display competitive landscape with company hierarchies
  7. Budget Analysis: Allocate and visualize budget across departments and line items

Next Steps

  1. Start with Getting Started guide to install and render your first TreeMap
  2. Choose a data binding pattern based on your data structure
  3. Select color mapping strategy (range, equal, or desaturation)
  4. Configure layout and drill-down if exploring hierarchies
  5. Customize leaf items, labels, and tooltips for your use case
  6. Add interactivity with selection and events
  7. Ensure accessibility and internationalization requirements

Ready to implement TreeMap? Start with references/getting-started.md or choose a specific feature guide from the navigation options above.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.61%
按下载量换算74

Claude

31.66%
按下载量换算68

Cursor

17.66%
按下载量换算38

Gemini CLI

8.72%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills