Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何设置包含数据的范围(chart.SetSourceData(...))
但是如何检索图表数据范围?range = chart.GetDataSource() 是否存在?
我找不到它了。
欢迎帮助,
让-玛丽
我认为没有直接的方法。我最好的建议是检查图表的系列并检查系列的值和 XValues。
foreach (Series series in chart.SeriesCollection()){ Range values = series.Values; Range xvalues = series.XValues; }
然后,您可以将所有范围连接在一起并获取图表的源数据。