Pie

摘要

饼图将数据分组为切片以可视化部分与整体的关系。

了解有关 ArcGIS Pro 饼图的详细信息

说明

创建图表对象时,必须使用参数名指定类构造函数的可选参数;这些可选参数不能通过参数位置指定。 有关如何使用关键字指定参数的示例,请参阅代码示例部分。

语法

 Pie ({categoryField}, {numberFields}, {groupingPercent}, {donutSize}, {sort}, {showDataLabels}, {dataLabelsDisplay}, {title}, {description}, {dataSource}, {displaySize})
参数说明数据类型
categoryField

The field name of the category variable.

String
numberFields

The field names for the numeric field or fields. Provide a single field name or a list of field names.

String
groupingPercent

The percentage threshold for grouping smaller slices into a single Other category. Provide an integer between 0 and 100 that represents the maximum percentage value for determining which slices are grouped into the Other category.

Integer
donutSize

The size of the hole when displaying a pie chart as a donut. Provide an integer between 0 and 100 that represents the size of the hole as a percentage relative to the total size of the pie.

Integer
sort

Specifies the sort order for the slices in the chart.

  • LABEL_CLOCKWISEDisplay slices in clockwise alphabetical order, starting at the top center of chart.
  • LABEL_COUNTERCLOCKWISEDisplay slices in counterclockwise alphabetical order, starting at the top center of chart.
  • VALUE_CLOCKWISEDisplay slices in clockwise order by value, starting at the top center of chart.
  • COUNTERCLOCKWISEDisplay slices in counterclockwise order by value, starting at the top center of chart.
String
showDataLabels

Specifies whether data labels will be displayed.

  • TrueDisplay data labels.
  • FalseHide data labels.
Boolean
dataLabelsDisplay

Specifies the format that will be used for the data labels.

  • VALUEDisplay raw number values.
  • PERCENTAGEDisplay percentage values.
  • PERCENTAGE_AND_VALUEDisplay both raw number and percentage values.
String
title

The title of the chart. The title text appears at the top of the chart view and is used as the label for the chart in the Contents pane.

String
description

The description of the chart. The description text appears at the bottom of the chart view.

String
dataSource

The data source of the chart. When a chart is exported using the exportToSVG method or displayed in an ArcGIS Notebook, the data source will be read and rendered on the chart. Valid data sources include the following:

  • Paths to datasets, including local datasets, UNC paths, and service URLs
  • Arrow table objects
  • Layer objects

Object
displaySize
[displaySize,...]

The size of the chart when exported using the exportToSVG method or displayed in an ArcGIS Notebook. The value must be specified as a two-item list in which the first item is the width of the chart and the second item is the height of the chart.

List

属性

属性说明数据类型
categoryField
(可读写)

类别变量的字段名称。

String
dataLabelsDisplay
(可读写)

指定将用于数据标注的格式。

  • VALUE显示原始数值。
  • PERCENTAGE显示百分比值。
  • PERCENTAGE_AND_VALUE显示原始数值和百分比值。
String
dataSource
(可读写)

图表的数据源。 当通过 exportToSVG 方法导出图表或将其显示在 ArcGIS Notebook 中时,将读取数据源并将其呈现在图表上。 其中包括以下有效数据源:

  • 数据集的路径(包括本地数据集、UNC 路径和服务 URL)
  • Arrow 表对象
  • Layer 对象。

Object
description
(可读写)

图表的描述。 该描述文本会显示于图表视图底部。

String
displaySize
(可读写)

当使用 exportToSVG 方法导出图表或将其显示在 ArcGIS Notebook 中时,图表的大小。 该值必须指定为两个项目的列表,其中第一个项目是图表的宽度,第二个项目是图表的高度。

List
donutSize
(可读写)

将饼图显示为圆弧时的孔大小。 提供的值为介于 0 和 100 之间的整数,用于将孔大小表示为相对于饼图总大小的百分比。

Integer
groupingPercent
(可读写)

用于将较小的剖切片分组为单一 Other 类别的百分比阈值。 提供的值为介于 0 和 100 之间的整数,表示用于确定分组到 Other 类别中的切片的最大百分比值。

Integer
legend
(可读写)

图表图例的属性。

  • visible - 指定是否在图表视图中显示图例。 True 显示图例,False 隐藏图例。
  • title - 图例的标题。
Object
numberFields
(可读写)

一个或多个数值字段的字段名称。 提供一个字段名或一个字段名称列表。

String
showDataLabels
(可读写)

指定是否将显示数据标注。

  • True显示数据标注。
  • False隐藏数据标注。
Boolean
sort
(可读写)

指定饼图中切片的排序顺序。

  • LABEL_CLOCKWISE从饼图顶部中心开始,按字母顺序顺时针显示切片。
  • LABEL_COUNTERCLOCKWISE从饼图顶部中心开始,按字母顺序逆时针显示切片。
  • VALUE_CLOCKWISE从饼图顶部中心开始,按值顺序顺时针显示切片。
  • COUNTERCLOCKWISE从饼图顶部中心开始,按值顺序逆时针显示切片。
String
theme
(可读写)

指定应用于图表的主题的名称。

String
title
(可读写)

图表的标题。 标题文本显示于图表视图顶部,并用作内容窗格中按绘制顺序列出选项卡 按绘制顺序列出 的标注。

String
type
(只读)

用于指示图表类型的字符串值。

String

方法概述

方法说明
addToLayer (layer_or_layerfile)

将图表对象添加到图层或独立表中。

exportToSVG (path, width, height)

将图表导出为 SVG 格式。

updateChart ()

更新图表属性可以同步对象与之前添加到图层的图表之间的更改。

方法

addToLayer (layer_or_layerfile)
参数说明数据类型
layer_or_layerfile

The chart will be added to the target object. The layer_or_layerfile argument can be a Layer or a Table object.

Object

定义图表属性后的最后一步通常是使用 addToLayer 方法将图表对象添加到图层或表中。

将图表添加到现有图层。

import arcpy

aprx = arcpy.mp.ArcGISProject("current")
map = aprx.listMaps()[0]
censusLayer = map.listLayers('Census Block Groups')[0]

# Add chart object to a layer
chart.addToLayer(censusLayer)
exportToSVG (path, width, height)
参数说明数据类型
path

The path where the chart will be exported in SVG format.

String
width

The width of the output graphic.

Integer
height

The height of the output graphic.

Integer

在某些情况下,您可能希望将图表另存为可在 ArcGIS Pro 外部共享和查看的图形。 导出为 SVG 图形格式是有好处的,因为图表元素和文本将存储为可在矢量图形软件中进行独立修改的矢量元素。 SVG 图形也可以调整为任何比例,而不会出现像素化或质量下降的情况。

将具有工程图层数据源的图表导出到 .svg 文件中。

import arcpy

aprx = arcpy.mp.ArcGISProject('current')
censusLayer = aprx.listMaps()[0].listLayers('Census Block Groups')[0]

# Set data source of chart object to a layer within current project
chart.dataSource = censusLayer

# Save the chart to file with dimensions width=500, height=500
chart.exportToSVG('populationByState.svg', 500, 500)

将具有要素服务数据源的图表导出到 .svg 文件中。


featureServiceURL = r'https://services1.arcgis.com/hLJbHVT9ZrDIzK0I/arcgis/rest/services/CrimesChiTheft/FeatureServer/0'

# Set data source of chart object to a feature service URL
chart.dataSource = featureServiceURL

# Save the chart to file with dimensions width=800, height=600
chart.exportToSVG('theftsPerBeat.svg', 800, 600)
updateChart ()

定义图表属性后的最后一步通常是使用 addToLayer 方法将图表对象添加到图层中。

要进一步修改图表属性,您可以修改原始图表的属性,而非从头开始创建新图表。 然后,您可以使用 updateChart 方法将所有更改同步到已添加到该图层的图表中。 由此可在图表属性窗格和图表视图中显示所做的更改。

可以使用 updateChart 方法将图表属性更改同步到图层中。


chart.addToLayer(myLayer)

# Further modification is necessary
chart.description = "Data from the U.S. Census Bureau"
chart.updateChart()

代码示例

基于图层创建饼图并将该图表导出为 .svg 文件。


import arcpy
lyr = arcpy.mp.ArcGISProject("current").activeMap.listLayers("nyc_noise_complaints")[0]
pie = arcpy.charts.Pie(categoryField="Complaint_Type", title="Noise Complaints by Type", dataSource=lyr)
pie.exportToSVG('pie.svg', width=1000, height=800)