DisplayEquation プロパティ (Excel Graph)
True if the equation for the trendline is displayed on the chart (in the same data label as the R-squared value). Setting this property to True automatically turns on data labels. 読み取り/書き込みが可能な Boolean です。
式。DisplayEquation
expression 必須です。 [適用先] リスト内のオブジェクトのいずれかを返す式です。
次の使用例は、近似曲線 1 に R-2 乗値と方程式を表示します。 この例は、最初の系列の近似曲線を持つ 2D 縦棒グラフで実行する必要があります。
With myChart.SeriesCollection(1).Trendlines(1)
.DisplayRSquared = True
.DisplayEquation = True
End With
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。