在运行时设置Excel图表的动态数据而不是Excel.Range
我想为Excel图表设置数据,但无法显示任何范围内的数据。
所以我不能使用以下功能:chart.SetSourceData(range,XlRowCol)
我听说过这个系列,但不知道如何使用它
我有一个 List
整数
列表,并希望显示一个柱形图,其中每个整数值位于单列上。
请帮我。任何代码或建议都可以。
提前谢谢
I want to set data for Excel chart but cannot display data in any Range.
so i cannot use following function :chart.SetSourceData(range,XlRowCol)
i have heared about the series but dont know how to use it
I am having a List<int> list
of integers
and want to display a column chart with each integer value on singe column.
Please help me. Any code or suggestions will do.
thnx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
列表是数组吗?您可以将一维数组分配给图表系列的 .XValues 和 .Values。您必须一次填充多个系列。
Is a List an array? You can assign 1D arrays to the .XValues and .Values of a chart series. You would have to populate multiple series one at a time.