サマリ
Graph templates allow you to create graphs from different datasets that have the same basic structure. The template file contains all the information necessary to create those graphs, except the actual data. Once the template is loaded, you can specify the particular data source you want to use.
説明
テンプレート ファイルは、GraphTemplates という名前のフォルダーで管理されます。このフォルダーは ArcGIS システムの 2 つの場所に存在します。GraphTemplates フォルダーの場所の 1 つは ArcGIS のインストール ディレクトリで、通常は C:\Program Files\ArcGIS\Desktop10.2\GraphTemplates になります。
もう 1 つは Windows の Documents and Settings フォルダーの、Application Data の下にある Esri ソフトウェアのサブフォルダーにあります。パスは次のようになります。C:\Documents and Settings\<ユーザー名>\Application Data\ESRI\ArcMap\GraphTemplates
構文
GraphTemplate (templateName)
パラメータ | 説明 | データ タイプ |
templateName | The graph template (.tee) used to construct the graph template. By default, uses default.tee. | String |
コードのサンプル
GraphTemplate example
Create a graph using a graph template.
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)