オブジェクト:GraphItem
- タイプ: Function
As Boolean
- 構文: GraphItem object.ModifyWizardPlot(required parameters variants, optional parameters variants)
指定した GraphItem オブジェクトの現在のプロットに、以下のパラメータを使用して変更を加えます。
| パラメーター |
値 |
指定 |
| グラフタイプ |
規定のタイプ名 |
必須 |
| グラフスタイル |
規定のスタイル名 |
必須 |
| データフォーマット |
規定のデータフォーマット名 |
必須 |
| 列配列 |
列の番号/タイトルからなる配列 |
必須 |
| 1プロット配列あたりの列数 |
1プロット配列あたりの列数 |
省略可能 |
| エラーバーのソース |
規定のソース名 |
エラーバープロットのみ |
| 上方向エラーバーの計算法 |
規定の計算法の名称 |
エラーバープロットのみ |
| 角度軸 (angular axis) の単位 |
規定の角度軸の単位名 |
極座標プロットのみ |
| 軸範囲の最小値 |
規定の角度の値 |
極座標プロットのみ |
| 軸範囲の最大値 |
規定の角度の値 |
極座標プロットのみ |
| 三角軸の単位 |
三角軸スケールの上限値 |
三角プロットのみ |
| 下方向エラーバーの計算法 |
規定の計算法の名称 |
エラーバープロットのみ |
| 行の選択 |
ブール値:True の場合は、y 反復 (行サマリー) プロットの行範囲を選択可能。事前に y 反復データを配置するマクロをサポートする場合は False を選択。 |
Row サマリー プロットのみ |
Example
- 例
' Declare an array to hold the columns and start and stop indices.
Dim ColumnsPerPlot()
Redim ColumnsPerPlot(2, 1)
ColumnsPerPlot(0, 0) = 0
ColumnsPerPlot(1, 0) = 0
ColumnsPerPlot(2, 0) = 0
ColumnsPerPlot(0, 1) = 1
ColumnsPerPlot(1, 1) = 0
ColumnsPerPlot(2, 1) = 0
' Declare an array to hold the number of columns per plot.
Dim PlotColumnCountArray()
ReDim PlotColumnCountArray(0)
PlotColumnCountArray(0) = 2 ' We are only adding one plot.
ActiveDocument.CurrentPageItem.ModifyWizardPlot("Vertical Bar Chart", _
"Stacked Bars", _
"Many Y", _
ColumnsPerPlot, _
PlotColumnCountArray, _
"Worksheet Columns", _
"Standard Deviation", _
"Degrees", _
0.000000, _
360.000000)
(※訳注:_ による改行表示は1行に直して使用してください)
Wizard Graph のタイプとスタイル
| タイプ |
スタイル |
| Scatter Plot |
- Simple Scatter
- Multiple Scatter
- Simple Regression
- Multiple Regression
- Simple Error Bars
- Multiple Error Bars
- Simple Error Bars & Regression
- Multiple Error Bars & Regression
- Horizontal Error Bars
- Bidirectional Error Bars
- Vertical Point Plot
- Horizontal Point Plot
- Vertical Dot Plot
- Horizontal Dot Plot
|
| Line Plot |
- Simple Straight Line
- Multiple Straight Line
- Simple Spline Curve
- Multiple Spline Curve
- Simple Vertical Step Plot
- Multiple Vertical Step Plot
- Simple Horizontal Step Plot
- Multiple Horizontal Step Plot
- Simple Vertical Midpoint Step Plot
- Multiple Vertical Midpoint Step Plot
- Simple Horizontal Midpoint Step Plot
- Multiple Horizontal Midpoint Step Plot
|
| Line and Scatter Plot |
- Simple Straight Line
- Multiple Straight Lines
- Simple Spline Curve
- Multiple Spline Curve
- Simple Error Bars
- Multiple Error Bars
- Horizontal Error Bars
- Bidirectional Error Bars
- Simple Vertical Step Plot
- Multiple Vertical Step Plot
- Simple Horizontal Step Plot
- Multiple Horizontal Step Plot
- Simple Vertical Midpoint Step Plot
- Multiple Vertical Midpoint Step Plot
- Simple Horizontal Midpoint Step Plot
- Multiple Horizontal Midpoint Step Plot
|
| Polar Plot |
- Scatter
- Lines
- Scatter & Lines
|
| Vertical Bar Chart |
- Simple Bar
- Grouped Bar
- Simple Error Bars
- Grouped Error Bars
- Stacked Bar
|
| Horizontal Bar Chart |
- Simple Bar
- Grouped Bar
- Simple Error Bars
- Grouped Error Bars
- Stacked Bar
|
| Box Plot |
- Vertical Box Plot
- Horizontal Box Plot
|
| Pie Chart |
|
| Contour Plot |
|
| 3D Scatter Plot |
|
| 3D Line Plot |
|
| 3D Mesh Plot |
|
| 3D Bar Chart |
|
| Ternary Plot |
- Scatter
- Line
- Scatter and Line
|
| Bubble Plot |
|
データフォーマット名
| タイプ |
データフォーマット名 |
| Simples (one curve) plots |
- XY Pair
- Single X
- Single Y
|
| Multiple curve and column plots |
- XY Pairs
- X Many Y
- Y Many X
- Many X
- Many Y
|
| Polar plots |
- ThetaR
- XY Pairs
- Theta Many R
- R Many Theta
- Many R
- Many Theta
|
| 3D and contour |
- XYZ Triplet (not available for bar charts)
- Many Z
- XY Many Z
|
| Ternary |
- Ternary Triplets
- Ternary XY Pairs
- Ternary YZ Pairs
- Ternary XZ Pairs
|
| Pie |
|
エラーバーのソース
| パラメーター |
ソース名 |
| エラーバーのソース |
- Worksheet Columns
- Asymmetric Error Bar Columns
- Column Means
- Column Median
- First Column Entry
- Last Column Entry
- Row Means
- Row Median
- First Row Entry
- Last Row Entry
|
エラーバーの計算法
| パラメーター |
計算法の名称 |
Upper
(Error Bar Computation Parameter) |
- Mean
- Standard Deviation
- 2 Standard Deviations
- 3 Standard Deviations
- Standard Error
- 2 Standard Errors
- 3 Standard Errors
- 95% Confidence
- 99% Confidence
- 75th Percentile
- 90th Percentile
- Maximum
- Last Entry
|
Lower
(Error Bar Computation Parameter) |
- Mean
- Standard Deviation
- 2 Standard Deviations
- 3 Standard Deviations
- Standard Error
- 2 Standard Errors
- 3 Standard Errors
- 95% Confidence
- 99% Confidence
- 25th Percentile
- 10th Percentile
- Minimum
- First Entry
|
角度軸 (angular axis)
| パラメーター |
角度軸の単位名 |
| 角度軸 |
- Degrees
- Radians
- Grads
- Months
- Weeks
- Days
- Hours
- Minutes/Seconds
- Other
|
三角軸の最大値
| パラメーター |
三角軸スケールの上限値 |
| 三角軸の単位 |
|