示例:ChartStyle 属性,使用 XY 绘制

此示例将趋势图表的绘制样式设置为 XY 绘制。
Private Sub XYPlot() If Trend1.ChartStyle = rstXYplotStyle Then ' go to standard display mode Trend1.ChartStyle = rstStandardStyle Else ' go to XY Chart mode ' Go into XY Chart mode Trend1.ChartStyle = rstXYplotStyle ' Use Pen#1 as the X axis Trend1.XYPlotXAxisPen = 1 End If End Sub
提供反馈
对本文档有问题或反馈吗? 请在这里提交您的反馈
Normal