gpt4 book ai didi

c# - 使用图表在 Excel 中创建辅助轴

转载 作者:太空宇宙 更新时间:2023-11-03 16:05:05 25 4
gpt4 key购买 nike

我尝试使用 C# 在我的 Excel 图表中创建辅助轴。我试试这段代码-

    Excel.ChartObjects xlCharts = (Excel.ChartObjects)xlWorkSheet.ChartObjects(Type.Missing);
Excel.ChartObject myChart = (Excel.ChartObject)xlCharts.Add(10, 80, 300, 250);
Excel.Chart chartPage = myChart.Chart;

chartRange = xlWorkSheet.get_Range("C2", GetLetterFromNum(columns.Length - 1 + Convert.ToInt32(NumCust.Text)) + Convert.ToString(rowIndex));
TimeRange = xlWorkSheet.get_Range("A2", "A" + Convert.ToString(rowIndex));
SecondryRange = xlWorkSheet.get_Range("B2", "B" + Convert.ToString(rowIndex));
chartPage.SetSourceData(chartRange, misValue);
chartPage.SeriesCollection(1).XValues = TimeRange;
chartPage.SeriesCollection(1).YAxisType = AxisType.Primary;
chartPage.SeriesCollection(1).YAxisType = AxisType.Secondary;

但播放器无法识别“AxisType”命令,但我总是收到错误信息

The name 'AxisType' does not exist in the current context

我找不到我做错了什么......

最佳答案

我找到了这篇文章 at msdn其中给出了一个带有副斧头的例子

关于c# - 使用图表在 Excel 中创建辅助轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19810729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com