class documentation

class PlotArea:

View In Hierarchy

チャートの表示ベース領域クラスです。

Method getAutoLayout チャートのチャート描画領域のレイアウトが自動設定されたかどうかを取得します。
Method getBorderFormat オブジェクトの淵の描画クラスを取得します。
Method getFillFormat オブジェクトの塗りつぶしの描画クラスを取得します。
Method getGlowFormat オブジェクトの光彩の描画クラスを取得します。
Method getShadowFormat オブジェクトの影つけの描画クラスを取得します。
Method getSoftEdgeFormat オブジェクトのぼかしの描画クラスを取得します。
Method getThreeDFormat オブジェクトの3D表示の描画クラスを取得します。
Method setAutoLayout チャートのチャート描画領域のレイアウトを自動設定します。
Method setCustomLayout チャートのチャート描画領域のレイアウトの位置を手動設定します。(対応していないチャートもあります)
def getAutoLayout(self) -> bool:

チャートのチャート描画領域のレイアウトが自動設定されたかどうかを取得します。

Returns
booltrue:自動設定された false:自動設定されていない
def getBorderFormat(self) -> ChartLineFormat:

オブジェクトの淵の描画クラスを取得します。

Returns
ChartLineFormatオブジェクトの淵の描画クラス
def getFillFormat(self) -> ChartFillFormat:

オブジェクトの塗りつぶしの描画クラスを取得します。

Returns
ChartFillFormatオブジェクトの塗りつぶしの描画クラス
def getGlowFormat(self) -> ChartGlowFormat:

オブジェクトの光彩の描画クラスを取得します。

Returns
ChartGlowFormatオブジェクトの光彩の描画クラス
def getShadowFormat(self) -> ChartShadowFormat:

オブジェクトの影つけの描画クラスを取得します。

Returns
ChartShadowFormatオブジェクトの影つけの描画クラス
def getSoftEdgeFormat(self) -> ChartSoftEdgeFormat:

オブジェクトのぼかしの描画クラスを取得します。

Returns
ChartSoftEdgeFormatオブジェクトのぼかしの描画クラス
def getThreeDFormat(self) -> ChartThreeDFormat:

オブジェクトの3D表示の描画クラスを取得します。

Returns
ChartThreeDFormatオブジェクトの3D表示の描画クラス
def setAutoLayout(self):

チャートのチャート描画領域のレイアウトを自動設定します。

def setCustomLayout(self, left: float, top: float, width: float, height: float):

チャートのチャート描画領域のレイアウトの位置を手動設定します。(対応していないチャートもあります)

Parameters
left:float左端のオフセット(単位:ポイント) 現在の位置からの相対位置なので、マイナス値を許容します。
top:float上端のオフセット(単位:ポイント) 現在の位置からの相対位置なので、マイナス値を許容します。
width:float幅(単位:ポイント)
height:float高さ(単位:ポイント)