Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

arcgis-charts地理信息系统图表

Agent Skill

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

总安装

436

周安装

18

GitHub Stars

13

下载量

143
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:arcgis-charts(地理信息系统图表)
来源仓库:https://github.com/saschabrunnerch/arcgis-maps-sdk-js-ai-context
仓库路径:skills/arcgis-charts
安装命令:
npx skills add https://github.com/saschabrunnerch/arcgis-maps-sdk-js-ai-context --skill arcgis-charts
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/saschabrunnerch/arcgis-maps-sdk-js-ai-context --skill arcgis-charts

简介

将图层数据转化为各类图表(柱状、折线、饼图等),增强空间数据的可读性。

  • 适用于报告生成、仪表板展示或教学演示中对地理信息的统计分析需求。
  • 作为独立组件包提供,无需完整 SDK 即可单独引入图表功能模块。
  • 图表样式与交互行为由底层数据驱动,需确保字段命名清晰便于映射关系建立。
  • arcgis-charts 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ArcGIS Charts

Use this skill when visualizing layer data as charts (bar, line, pie, histogram, scatter, etc.) using the @arcgis/charts-components package. This is a new component package in 5.0 with no 4.x equivalent.

Import Patterns

CDN (No Build Tools)

<!-- Load ArcGIS Maps SDK -->
<script src="https://js.arcgis.com/5.0/"></script>
<!-- Load Charts Components -->
<script
  type="module"
  src="https://js.arcgis.com/5.0/charts-components/"
></script>

Direct ESM Imports (Build Tools)

import "@arcgis/charts-components/components/arcgis-chart";
import "@arcgis/charts-components/components/arcgis-charts-action-bar";

Chart Models (for programmatic configuration)

import { BarChartModel } from "@arcgis/charts-components/model";
import { PieChartModel } from "@arcgis/charts-components/model";
import { LineChartModel } from "@arcgis/charts-components/model";
import { HistogramModel } from "@arcgis/charts-components/model";
import { ScatterplotModel } from "@arcgis/charts-components/model";
import { BoxPlotModel } from "@arcgis/charts-components/model";
import { GaugeModel } from "@arcgis/charts-components/model";
import { RadarChartModel } from "@arcgis/charts-components/model";
import { HeatChartModel } from "@arcgis/charts-components/model";
import { ComboBarLineChartModel } from "@arcgis/charts-components/model";

Supported Chart Types

Chart TypeModel ClassDescription
BarBarChartModelHorizontal or vertical bar charts
LineLineChartModelLine charts with series
PiePieChartModelPie and donut charts
HistogramHistogramModelFrequency distribution histograms
ScatterScatterplotModelScatter and bubble plots
Box PlotBoxPlotModelBox and whisker plots
GaugeGaugeModelGauge / speedometer charts
RadarRadarChartModelRadar / spider charts
Heat ChartHeatChartModelHeat / matrix charts
ComboComboBarLineChartModelCombined bar and line charts

arcgis-chart Component

Core Properties

PropertyAttributeTypeDefaultDescription
model-`ChartModel \WebChart`-Chart configuration model (set via JS)
layer-`FeatureLayerView \SupportedLayer`-Data source layer (set via JS)
view-`MapView \SceneView`-Map/scene view reference (set via JS)
layerItemIdlayer-item-idstring-Layer portal item ID (alternative to layer)
chartIndexchart-indexnumber-Index of chart to render when a layer has multiple charts
actionModeaction-modestring-Interaction mode: "zoom", "multiSelection", "multiSelectionWithCtrlKey", "pan"

Display Properties

PropertyAttributeTypeDefaultDescription
disableInteractionsdisable-interactionsbooleanfalseDisable all chart interactions
enableConfigurationenable-configurationbooleanfalseEnable built-in chart configuration UI
enableResponsiveFeaturesenable-responsive-featuresboolean-Enable responsive behavior
useAnimatedChartsuse-animated-chartsboolean-Enable chart animations
hideEmptySerieshide-empty-seriesboolean-Hide series with no data
hideLicenseWatermarkhide-license-watermarkboolean-Hide license watermark
hideLoaderAnimationhide-loader-animationboolean-Hide loading animation
placeholderplaceholderstring-Placeholder text when no data
showUIMessagesshow-ui-messagesboolean-Show user-facing messages
errorPolicyerror-policystring"throw"Error handling: "throw" or "ignore"

Data and Filtering Properties

PropertyAttributeTypeDefaultDescription
filterByExtentfilter-by-extentboolean-Filter chart data by current map extent
filterBySelectionfilter-by-selectionboolean-Filter chart data by map selection
syncSelectionsync-selectionbooleanfalseSync selection between chart and map
runtimeDataFilters-WebChartDataFilters-Runtime data filters (set via JS)
selectionData-SelectionData-Current selection data
nullAsValidnull-as-validbooleanfalseTreat null values as valid data points
timeZonetime-zonestring-Time zone for temporal data

Formatter Callbacks

PropertyTypeDescription
dataLabelFormatterfunctionCustom formatting for data labels
tooltipFormatterfunctionCustom formatting for tooltips
xAxisLabelFormatterfunctionCustom formatting for X-axis labels
yAxisLabelFormatterfunctionCustom formatting for Y-axis labels
gaugeInnerLabelFormatterfunctionCustom formatting for gauge inner labels
guideTooltipFormatterfunctionCustom formatting for guide tooltips

Methods

MethodReturnsDescription
loadModel()Promise<void>Load the chart model
refresh(props?)Promise<void>Refresh chart; optional {updateData, resetAxesBounds}
resetZoom()Promise<void>Reset zoom to default view
clearSelection()Promise<void>Clear all selections
switchSelection()Promise<void>Switch selection state
exportAsImage(format?)Promise<void>Export chart as "png", "jpg", or "svg"
exportAsCSV(options?)Promise<void>Export chart data as CSV file
errorAlert(message?)Promise<void>Display an error alert
notify(message?, heading?)Promise<void>Show a notification
componentOnReady()Promise<this>Resolves when the component is fully loaded

Events

EventDetailDescription
arcgisSelectionChange-Fired when the chart selection changes
arcgisDataFetchCompleteWebChartDataTypesFired when data has been fetched
arcgisDataProcessComplete-Fired when data processing is complete
arcgisUpdateCompleteValidationStatusFired when chart updates are complete
arcgisConfigChange{newConfig, oldConfig, functionCalled}Fired when chart configuration changes
arcgisAxesMinMaxChangeAxesMinMaxChangePayloadFired when axes min/max are computed
arcgisBadDataWarningRaiseDataWarningObjectFired when a data error is detected
arcgisChartNotFoundWarningstringFired when a referenced chart is not found

Basic Usage

Chart from a FeatureLayer

<arcgis-map id="map" item-id="YOUR_WEBMAP_ID">
  <arcgis-zoom slot="top-left"></arcgis-zoom>
</arcgis-map>
<div id="chart-container" style="width: 500px; height: 400px;">
  <arcgis-chart id="my-chart"></arcgis-chart>
</div>

<script type="module">
  const mapElement = document.querySelector("arcgis-map");
  const chartElement = document.querySelector("#my-chart");

  await mapElement.viewOnReady();
  const view = mapElement.view;

  // Get the layer
  const layer = view.map.layers.find((l) => l.title === "My Layer");
  await view.whenLayerView(layer);

  // Assign layer and view to chart
  chartElement.layer = layer;
  chartElement.view = view;

  // Create a bar chart model
  const { BarChartModel } = await $arcgis.import(
    "@arcgis/charts-components/model",
  );

  const model = new BarChartModel();
  model.layer = layer;

  chartElement.model = model;
</script>

Chart with WebChart Spec (JSON Configuration)

const chartElement = document.querySelector("arcgis-chart");
chartElement.layer = layer;
chartElement.view = view;

// WebChart JSON specification
chartElement.model = {
  type: "bar",
  title: { visible: true, text: "Population by State" },
  series: [
    {
      type: "bar",
      query: {
        orderByFields: ["Population DESC"],
        groupByFieldsForStatistics: ["State"],
        outStatistics: [
          {
            statisticType: "sum",
            onStatisticField: "Population",
            outStatisticFieldName: "TotalPop",
          },
        ],
      },
      x: "State",
      y: "TotalPop",
    },
  ],
};

Pie Chart

const { PieChartModel } = await $arcgis.import(
  "@arcgis/charts-components/model",
);

const model = new PieChartModel();
model.layer = layer;

const chartElement = document.querySelector("arcgis-chart");
chartElement.layer = layer;
chartElement.view = view;
chartElement.model = model;

Line Chart

const { LineChartModel } = await $arcgis.import(
  "@arcgis/charts-components/model",
);

const model = new LineChartModel();
model.layer = layer;

const chartElement = document.querySelector("arcgis-chart");
chartElement.layer = layer;
chartElement.view = view;
chartElement.model = model;

arcgis-charts-action-bar Component

Provides a toolbar for chart interactions (export, selection, filtering, zoom).

Setup

<div style="position: relative; width: 600px; height: 400px;">
  <arcgis-chart id="my-chart"></arcgis-chart>
  <arcgis-charts-action-bar id="my-action-bar"></arcgis-charts-action-bar>
</div>

<script type="module">
  const chart = document.querySelector("#my-chart");
  const actionBar = document.querySelector("#my-action-bar");

  // Connect action bar to chart
  actionBar.chartElement = chart;
</script>

Key Action Bar Properties

PropertyAttributeTypeDefaultDescription
chartElementchart-elementArcgisChart-Reference to the chart component
expandedexpandedbooleanfalseWhether the action bar is expanded
exportAsImageStateexport-as-image-statestring"enabled"Image export button state
exportAsCSVStateexport-as-csv-statestring"enabled"CSV export button state
filterByExtentStatefilter-by-extent-statestring"enabled"Filter by extent button state
filterBySelectionStatefilter-by-selection-statestring"enabled"Filter by selection button state
zoomStatezoom-statestring"enabled"Zoom button state
forceDisableActionsforce-disable-actionsbooleanfalseDisable all actions at once
hiddenActions-DefaultChartActions[]-Array of actions to hide

Action states can be "enabled", "disabled", or "hidden".

Selection and Filtering

Sync Selection Between Chart and Map

const chart = document.querySelector("arcgis-chart");
chart.syncSelection = true;
chart.layer = layer;
chart.view = view;

// Listen for selection changes
chart.addEventListener("arcgisSelectionChange", () => {
  console.log("Selection changed:", chart.selectionData);
});

Filter Chart by Map Extent

const chart = document.querySelector("arcgis-chart");
chart.filterByExtent = true;
chart.view = view;
chart.layer = layer;

Runtime Data Filters

const chart = document.querySelector("arcgis-chart");
chart.runtimeDataFilters = {
  where: "Population > 100000",
  orderByFields: ["Population DESC"],
};

Export

Export as Image

const chart = document.querySelector("arcgis-chart");
await chart.exportAsImage("png"); // "png", "jpg", or "svg"

Export as CSV

const chart = document.querySelector("arcgis-chart");
await chart.exportAsCSV();

Custom Formatters

Data Label Formatter

const chart = document.querySelector("arcgis-chart");
chart.dataLabelFormatter = (value, field) => {
  if (typeof value === "number") {
    return value.toLocaleString("en-US", {
      style: "currency",
      currency: "USD",
    });
  }
  return String(value);
};

Tooltip Formatter

chart.tooltipFormatter = (tooltipData) => {
  return `<b>${tooltipData.category}</b>: ${tooltipData.value.toLocaleString()}`;
};

Axis Label Formatter

chart.xAxisLabelFormatter = (value) => {
  // Truncate long labels
  return String(value).length > 15
    ? String(value).slice(0, 12) + "..."
    : String(value);
};

CDN Full Example

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Chart from Feature Layer</title>
    <script src="https://js.arcgis.com/5.0/"></script>
    <script
      type="module"
      src="https://js.arcgis.com/5.0/charts-components/"
    ></script>
    <script
      type="module"
      src="https://js.arcgis.com/5.0/map-components/"
    ></script>
    <style>
      html,
      body {
        height: 100%;
        margin: 0;
        display: flex;
      }
      arcgis-map {
        flex: 1;
      }
      #chart-panel {
        width: 400px;
        height: 100%;
      }
    </style>
  </head>
  <body>
    <arcgis-map id="map" item-id="YOUR_WEBMAP_ID">
      <arcgis-zoom slot="top-left"></arcgis-zoom>
    </arcgis-map>
    <div id="chart-panel">
      <arcgis-chart id="chart"></arcgis-chart>
      <arcgis-charts-action-bar id="action-bar"></arcgis-charts-action-bar>
    </div>

    <script type="module">
      const mapElement = document.querySelector("#map");
      const chartElement = document.querySelector("#chart");
      const actionBar = document.querySelector("#action-bar");

      await mapElement.viewOnReady();
      const view = mapElement.view;
      const layer = view.map.layers.getItemAt(0);
      await view.whenLayerView(layer);

      const { BarChartModel } = await $arcgis.import(
        "@arcgis/charts-components/model",
      );

      const model = new BarChartModel();
      model.layer = layer;

      chartElement.layer = layer;
      chartElement.view = view;
      chartElement.model = model;
      chartElement.syncSelection = true;

      actionBar.chartElement = chartElement;
    </script>
  </body>
</html>

Common Pitfalls

  1. Missing layer property: The chart requires a layer data source. Setting only model without layer produces an empty chart. // Anti-pattern: model without layer chartElement.model = new BarChartModel(); // Correct: set both layer and model const model = new BarChartModel(); model.layer = layer; chartElement.layer = layer; chartElement.model = model; Impact: The chart renders its frame and axes but shows no data.
  2. Chart component not loaded: The charts package must be explicitly loaded via CDN or imported. <!-- Anti-pattern: missing charts-components script --> <script src="https://js.arcgis.com/5.0/"></script> <arcgis-chart></arcgis-chart> <!-- Correct: include charts-components --> <script src="https://js.arcgis.com/5.0/"></script> <script type="module" src="https://js.arcgis.com/5.0/charts-components/" ></script> <arcgis-chart></arcgis-chart> Impact: The arcgis-chart element is not defined and renders as an empty inline element.
  3. Setting model as an HTML attribute: The model property accepts complex objects and must be set via JavaScript, not as an HTML attribute. Impact: The attribute value is ignored; the chart shows no data.
  4. Using filterByExtent without view: Extent filtering requires the view property to track the current map extent. // Anti-pattern: filterByExtent without view chart.filterByExtent = true; chart.layer = layer; // Correct: set view for extent filtering chart.filterByExtent = true; chart.layer = layer; chart.view = view; Impact: The filter has no extent to reference and may throw errors or show all data.
  5. Action bar not connected: The action bar needs a reference to the chart element. // Anti-pattern: action bar without chart reference const actionBar = document.querySelector("arcgis-charts-action-bar"); // Missing: actionBar.chartElement = chartElement; Impact: Action bar buttons are visible but do nothing when clicked.

Reference Samples

  • arcade-execute-chart - Execute Arcade expressions and build charts from results
  • featurereduction-cluster-popup-chart - Charts inside cluster popups
  • featurereduction-cluster-pie-charts - Pie chart cluster representations
  • visualization-pie-chart - Pie chart visualization

Related Skills

  • See arcgis-layers for configuring FeatureLayers that supply chart data.
  • See arcgis-core-maps for setting up the MapView referenced by charts.
  • See arcgis-arcade for Arcade expressions used with chart data computation.
  • See arcgis-widgets-ui for layout components to host chart panels.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.59%
按下载量换算49

Claude

32.45%
按下载量换算46

Cursor

20.02%
按下载量换算29

Gemini CLI

8.96%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills