使用Interop.Excel自定义图表的数据标签文本

时间:2019-03-28 10:23:11

标签: vb.net

执行.SeriesCollection(5).DataLabels(1).Format.TextFrame2.TextRange.Text = some_value

时显示错误消息

使用以下代码:

Dim chart As Excel.Chart chart = xlWorkBook.ActiveChart chart.ChartType = Excel.XlChartType.xlBarStacked With chart ... some code ... .SeriesCollection(5).DataLabels(1).Format.TextFrame2.TextRange.Text = some_value .... some code .... End chart

错误消息是

Microsoft.VisualBasic.dll中发生了'System.Runtime.InteropServices.COMException类型的未处理异常 附加信息:无法获取DataLabels类的Count属性。'

谢谢。

0 个答案:

没有答案