Guide

摘要

Guide 类包含用于配置图表参考线的属性。

说明

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

语法

 Guide (guideType, {name}, {label}, {valueFrom}, {valueTo}, {valueFromField}, {valueFromFieldAggregationType}, {polyline}, {lineColor}, {lineWidth}, {lineDashStyle}, {fillColor})
参数说明数据类型
guideType

Specifies the type of guide that will be created.

  • lineA line guide will be created. Use this value in conjunction with the valueFrom argument.
  • rangeA range guide will be created. Use this value in conjunction with the valueFrom and valueTo arguments.
  • polylineA polyline or point guide will be created. Use this value in conjunction with the polyline argument.
String
name

The unique name for the guide that will appear in the Chart Properties pane.

String
label

The guide label that will be displayed in the chart.

String
valueFrom

The location of the guide when creating a line guide, or the start location of the range when creating a range guide. Use a double value for numeric axes and a datetime object for temporal axes.

Object
valueTo

The end location of the range when creating a range guide. Use a double value for numeric axes and a datetime object for temporal axes.

Object
valueFromField

The field name whose values will be used to calculate the location of a data-driven guide. Use this argument in conjunction with the valueFromFieldAggregationType argument.

String
valueFromFieldAggregationType

Specifies the statistical calculation that will be used to determine the location of a data-driven guide. Use this argument in conjunction with the valueFromField argument.

  • MEANThe mean of all values will be calculated and applied.
  • MEDIANThe median of all values will be identified and applied.
  • MINThe minimum value will be identified and applied.
  • MAXThe maximum value will be identified and applied.
String
polyline
[polyline,...]

A list of coordinates that will be used when creating a polyline guide. Coordinates should be in row-major order. Specifying a single coordinate pair will create a point guide.

Create a polyline guide.

# Coordinates will be: (0, 2), (10, 12), (20, 15)
coordinates = [0, 2, 10, 12, 20, 15] 
guide = arcpy.charts.Guide(guideType="polyline", polyline=coordinates)
List
lineColor

The color of a line guide in hexadecimal format.

String
lineWidth

The width of a line guide.

Double
lineDashStyle

Specifies the dash style that will be used for a line guide.

  • solidA solid style will be used.
  • dotA dot style will be used.
  • dashA dash style will be used.
  • dashDotA dash-dot style will be used.
  • longDashA long-dash style will be used.
  • longDashDotA long-dash-dot style will be used.
String
fillColor

The fill color of a range guide in hexadecimal format.

String

属性

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

十六进制格式的范围参考线的填充颜色。

String
guideType
(可读写)

指定要创建的参考线类型。

  • line将创建线参考线。 将此值与 valueFrom 属性配合使用。
  • range将创建范围参考线。 将此值与 valueFromvalueTo 属性配合使用。
  • polyline将创建折线或点参考线。 将此值与 polyline 属性配合使用。
String
label
(可读写)

将显示在图表中的参考线标注。

String
lineColor
(可读写)

十六进制格式的线参考线的颜色。

String
lineDashStyle
(可读写)

指定用于线参考线的划线样式。

  • solid将使用实线样式。
  • dot将使用点样式。
  • dash将使用虚线样式。
  • dashDot将使用点划线样式。
  • longDash将使用长划线样式。
  • longDashDot将使用长点划线样式。
String
lineWidth
(可读写)

线参考线的宽度。

Double
name
(可读写)

将显示在图表属性窗格中的参考线的唯一名称。

String
polyline
(可读写)

创建折线参考线时将使用的坐标列表。 坐标应按行优先顺序排列。 指定单一坐标对时,将创建一个点参考线。

创建折线参考线。


# Coordinates will be: (0, 2), (10, 12), (20, 15)
coordinates = [0, 2, 10, 12, 20, 15] 
guide = arcpy.charts.Guide(guideType="polyline", polyline=coordinates)
List
valueFrom
(可读写)

创建线参考线时,参考线的位置,或创建范围参考线时范围的起始位置。 对数字轴,使用双精度值;对时间轴,使用 datetime 对象。

Object
valueFromField
(可读写)

其值将用于计算数据驱动参考线位置的字段名称。 将此属性与 valueFromFieldAggregationType 属性配合使用。

String
valueFromFieldAggregationType
(可读写)

指定将用于确定数据驱动参考线位置的统计计算。 将此属性与 valueFromField 属性配合使用。

  • MEAN将计算并应用所有值的平均值。
  • MEDIAN将识别并应用所有值的中值。
  • MIN将识别并应用最小值。
  • MAX将识别并应用最大值。
String
valueTo
(可读写)

创建范围参考线时范围的结束位置。 对数字轴,使用双精度值;对时间轴,使用 datetime 对象。

Object

代码示例

参考线示例 1

向散点图添加两条显示每个轴平均值的参考线。

import arcpy

chart = arcpy.charts.Scatter(x="voter_turnout", y="per_capita_income", dataSource="VoterTurnout2020")

# Create and configure guides
guideX = arcpy.charts.Guide(guideType="line", valueFrom=65.6, label="Avg. Voter Turnout")
guideY = arcpy.charts.Guide(guideType="line", valueFrom=26823.8, label="Avg. Per Capita Income")

# Add guides to appropriate axis
chart.xAxis.addGuide(guideX)
chart.yAxis.addGuide(guideY)

chart.exportToSVG("chart_with_guides.svg")
参考线示例 2

将数据驱动的参考线添加到条形图,以显示 y 轴的平均值。

import arcpy

lyr = arcpy.mp.ArcGISProject("current").listMaps()[0].listLayers()[0]
chart = arcpy.charts.Bar(x="State", y="TotalPop", aggregation="MEAN")

# Create data-driven guide
guide = arcpy.charts.Guide("line", valueFromField="TotalPop", valueFromFieldAggregationType="MEAN")

# Add guide to y-axis
chart.yAxis.addGuide(guide)

chart.addToLayer(lyr)