描述
通过图表模板可基于基本结构相同的不同数据集创建图表。除实际数据外,模板文件包含创建这些图表所必需的其他全部信息。加载模板后,可以指定要使用的特定数据源。
说明
模板文件保存在名为 GraphTemplates 的文件夹中,该文件夹位于 ArcGIS 安装目录中的两个位置。GraphTemplates 文件夹的一个位置位于 ArcGIS 安装目录下,第二个位置位于 Windows 的应用程序数据文件夹中。
语法
GraphTemplate (templateName)
参数 | 说明 | 数据类型 |
templateName | 用于构造图表模板的图表模板 (.tee)。默认情况下,使用default.tee。 | String |
代码示例
GraphTemplate 示例
使用图表模板创建图表。
import arcpy
input_data = 'c:/data/portland.gdb/downtown'
out_graph = 'portland_graph'
out_grf = 'c:/output/downtown_graph.grf'
graph = arcpy.Graph()
graph.addSeriesBarVertical(input_data, 'Value')
arcpy.MakeGraph_management(arcpy.GraphTemplate(), graph, out_graph)
arcpy.SaveGraph_management(out_graph, out_grf)