Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

syncfusion-aspnetcore-pivot-table同步融合 aspnetcore 数据透视表

Agent Skill

syncfusion-aspnetcore-pivot-table 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-pivot-table

简介

同步融合 ASP.NET Core 数据透视表组件,用于多维数据分析。

  • 适用于销售统计、财务分析、运营指标等数据汇总场景。
  • 通过 GitHub 安装并连接 OLAP 数据源,支持动态维度切换。
  • 使用前需验证聚合函数计算准确性,避免统计口径偏差。
  • 实时数据更新时应考虑增量计算优化性能消耗。syncfusion-aspnetcore-pivot-table 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing Pivot Table (ASP.NET Core)

Syncfusion ASP.NET Core Pivot Table (PivotView) enables multi-dimensional data visualization and analysis with interactive row/column/value axes, real-time aggregation, flexible filtering, and comprehensive export options.

⚠️ Important: Always verify API class names, properties, and method signatures by consulting the reference files in this skill (references/*.md). These are maintained with verified, working examples. Do not assume API details from other sources.

⚠️ Security Warning: Data Source Validation

CRITICAL SECURITY NOTICE: When implementing pivot tables, always use trusted data sources. Never fetch or bind data from untrusted or user-provided URLs without proper validation and sanitization.

Security Best Practices:

  1. Use Local Data: Prefer local, in-memory data sources for maximum security
  2. Validate Remote Sources: Only connect to authenticated and authorized API endpoints under your control
  3. Sanitize User Input: Never allow users to specify arbitrary URLs or data sources
  4. Use Configuration: Store connection strings and API URLs in secure configuration (appsettings.json with IConfiguration)
  5. Implement Authentication: Require authentication for all database and API connections
  6. Apply Authorization: Use [Authorize] attributes and role-based access control

Security Risks:

  • Indirect Prompt Injection: Untrusted third-party data can contain malicious content that manipulates AI agent behavior
  • Data Exposure: Unvalidated remote connections may expose sensitive information
  • SQL Injection: Unsanitized database queries can lead to data breaches
  • XSS Attacks: Unescaped data rendered in the UI can execute malicious scripts

Safe: Local data, authenticated APIs under your control, parameterized SQL queries ❌ Unsafe: User-provided URLs, unauthenticated endpoints, hardcoded connection strings

When to Use This Skill

Use this skill when building an ASP.NET Core application and the user needs:

  • Pivot reporting with row, column, value, and filter axes
  • Data aggregation with 20+ summary types (Sum, Avg, Count, Percentage, RunningTotals, etc.)
  • Interactive report building via field list and grouping bar UI
  • Data source binding (local JSON/CSV, SQL Server, OLAP, relational databases)
  • Filtering (member, label, value filtering with search/sort)
  • Sorting (field sorting, custom order, value sorting)
  • Advanced features (drill-down/up, drill-through, calculated fields, pivot chart)
  • Formatting (conditional formatting, number formatting, custom styling)
  • Export (Excel, PDF, CSV, print)
  • Performance optimization (virtual scrolling, paging, data compression)

Trigger keywords: pivot table, pivotview, PivotView, field list, grouping bar, OLAP, pivot aggregation, pivot export, pivot drill-down, pivot report, ASP.NET Core pivot

Quick Start Example

@using Syncfusion.EJ2.PivotView

<ejs-pivotview id="pivotview"
    height="450"
    showFieldList="true"
    showGroupingBar="true">
    <e-datasourcesettings dataSource="@ViewBag.DataSource">
        <e-rows>
            <e-field name="Country" caption="Country"></e-field>
        </e-rows>
        <e-columns>
            <e-field name="Year" caption="Year"></e-field>
        </e-columns>
        <e-values>
            <e-field name="Sales" caption="Total Sales" type="Sum"></e-field>
        </e-values>
        <e-filters>
            <e-field name="Region" caption="Region"></e-field>
        </e-filters>
        <e-formatsettings>
            <e-field name="Sales" format="C0" currency="USD"></e-field>
        </e-formatsettings>
    </e-datasourcesettings>
</ejs-pivotview>

Navigation Guide

Getting started and setup

📄 Read: references/getting-started.md

  • Installation and NuGet package setup
  • Project configuration and namespace registration
  • Basic PivotView initialization
  • Themes and styling setup

Pivoting and data binding

📄 Read: references/data-binding.md

  • Local/remote data binding patterns
  • CSV and JSON data sources
  • DataManager configuration
  • Field mapping and setup

Data source connections

📄 Read: references/mysql.md

  • MySQL database setup, connection configuration, Web API implementation
  • DataAdapter pattern, JSON serialization

📄 Read: references/mssql.md

  • SQL Server setup, authentication methods, Azure SQL Database integration
  • T-SQL queries, stored procedures

📄 Read: references/postgresql.md

  • PostgreSQL connection strings, SSL/TLS configuration
  • Query patterns, connection pooling

📄 Read: references/oracle.md

  • Oracle database setup, TNS configuration, authentication
  • SQL and PL/SQL queries

📄 Read: references/mongodb.md

  • MongoDB document database, BSON document handling
  • POCO model mapping, bulk operations

📄 Read: references/elasticsearch.md

  • Elasticsearch search engine, NEST client library
  • Query DSL patterns, index management

📄 Read: references/snowflake.md

  • Snowflake cloud warehouse, virtual warehouse configuration
  • Cost optimization, semi-structured data

Advanced data sources

📄 Read: references/olap.md

  • OLAP cube setup and hierarchical data binding
  • Dimension and measure configuration
  • Pivot engine integration

📄 Read: references/server-side-pivot-engine.md

  • Server-side processing and aggregation
  • Large dataset optimization for backend
  • Batch processing workflows

Data shaping and analysis

📄 Read: references/aggregation.md

  • Summary types: Sum, Avg, Count, Min, Max, Product, Median, StDev, Variance
  • Percentage calculations and running totals
  • Custom aggregation at runtime

📄 Read: references/calculated-field.md

  • Define and use calculated fields in formulas
  • Runtime field creation and updates
  • Performance considerations

📄 Read: references/grouping.md

  • Field-level grouping by date, value ranges
  • Axis grouping for dimension hierarchies

📄 Read: references/filtering.md

  • Member filtering with include/exclude
  • Label filtering (string, date, numeric)
  • Value filtering on aggregated data

📄 Read: references/sorting.md

  • Member field sorting (ascending/descending)
  • Custom member order configuration
  • Value sorting on computed cells

📄 Read: references/drill-through.md

  • Access underlying data behind pivot cells
  • Drill-through event handling

Visualization and layout

📄 Read: references/pivot-chart.md

  • Bind pivot chart to pivot table data
  • Chart type selection and configuration

📄 Read: references/classic-layout.md

  • Classic (Compact) layout rendering
  • Compact vs Outline vs Tree layout options

📄 Read: references/drill-down.md

  • Drill-down into dimension members
  • Drill-up navigation between hierarchy levels

📄 Read: references/row-and-column.md

  • Row and column axis configuration
  • Value field positioning

Formatting and display

📄 Read: references/number-formatting.md

  • Format value cells with currency, decimals, percentage
  • Custom number format providers

📄 Read: references/conditional-formatting.md

  • Apply style rules based on values or conditions
  • Color scales and data bars

📄 Read: references/hyper-link.md

  • Hyperlink columns for navigation
  • Custom URL generation and click handling

User interface controls

📄 Read: references/grouping-bar.md

  • Enable/disable grouping bar
  • Drag-drop field configuration
  • Grouping bar event handling

📄 Read: references/field-list.md

  • Field list popup and fixed modes
  • Field search and sorting
  • Field grouping by folders

📄 Read: references/defer-update.md

  • Batch changes without intermediate updates
  • Improve performance with large field changes

📄 Read: references/tool-bar.md

  • Toolbar button configuration
  • Built-in and custom commands
  • Export and action buttons

📄 Read: references/tool-tip.md

  • Cell and header tooltips
  • Custom tooltip content

Editing and data manipulation

📄 Read: references/editing.md

  • In-place cell editing workflows
  • Update underlying data from pivot
  • Cell edit event handling

Performance and optimization

📄 Read: references/virtual-scrolling.md

  • Virtual scrolling for large pivot tables
  • Memory-efficient rendering

📄 Read: references/paging.md

  • Pagination configuration
  • Page size and navigation

📄 Read: references/data-compression.md

  • Payload compression for data transfer
  • Bandwidth optimization

📄 Read: references/performance-best-practices.md

  • Tuning guidelines for large datasets
  • Server-side vs client-side rendering decisions
  • Common performance bottlenecks and fixes

State and persistence

📄 Read: references/state-persistence.md

  • Save pivot report state
  • Load saved configurations
  • State storage options

Export and printing

📄 Read: references/print.md

  • Print pivot table with custom settings
  • Print preview and page layout

📄 Read: references/excel-export.md

  • Export to Excel workbook
  • Formatting and multi-sheet export

📄 Read: references/pdf-export.md

  • Export to PDF document
  • Page orientation and sizing

Common Patterns

Pattern 1: Complete pivot with all UI:

  • Enable ShowFieldList, ShowGroupingBar, and toolbar buttons
  • User can build and refine reports interactively

Pattern 2: Server-side aggregation for large datasets:

  • Use server-side pivot engine for backend processing
  • Enable paging and virtual scrolling for responsive UX

Pattern 3: Read-only analytical view:

  • Disable field list and grouping bar
  • Set fixed row/column/value configuration
  • Use drill-down only for exploration

Key Properties Overview

  • DataSourceSettings - Data source and field configuration
  • Rows, Columns, Values, Filters - Axis field arrays
  • ShowFieldList - Toggle field list UI
  • ShowGroupingBar - Toggle grouping bar UI
  • EnableValueSorting - Allow value cell sorting
  • AllowExcelExport, AllowPdfExport - Export capabilities
  • AllowMemberFilter, AllowLabelFilter, AllowValueFilter - Filter types
  • EnableSorting, EnableVirtualization - Performance and interaction

Related Skills

  • implementing-syncfusion-aspnetcore-components - Parent library skill

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.39%
按下载量换算25

Claude

28.96%
按下载量换算21

Cursor

17.57%
按下载量换算12

Gemini CLI

9.84%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills