VB(Excel)中基于两个系列和两个轴的图表
我想使用 VB 在 Excel 中生成图表。该图表需要有两个系列。其中之一应显示为值,另一个应用作 x 轴。我怎样才能做到这一点?另外,如何为系列设置标签?
这是我的代码,在图表上绘制一组值:
ActiveChart.ChartType = xlXYScatterLines
'this sis displayed as y axis (values)
ActiveChart.SeriesCollection.Add Source:=Worksheets("My label").Range("H8:H11")
非常感谢
I'd like to generate a chart in Excel using VB. The chart needs to have two series. One of them should be displayed as values and the other used as x-axis. How can I do that? Additionally, how to set labels for the series?
Here is my code that plots one set of values on chart:
ActiveChart.ChartType = xlXYScatterLines
'this sis displayed as y axis (values)
ActiveChart.SeriesCollection.Add Source:=Worksheets("My label").Range("H8:H11")
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下...
阅读更多内容:快速 Excel 图表 VBA 示例
Give this a try...
Read more: Quick Excel Chart VBA Examples