我尝试使用Format.TextFrame2.TextRange
,但这不起作用,因为它返回包含指定图表元素的文本格式的Microsoft.Office.Interop.Excel.TextFrame2
对象。它是只读的。
我需要将Secondary Horizontal(value)Axis设置为白色。
Excel.Axis LineAxis = (Excel.Axis)ChartMemory.Axes(Excel.XlAxisType.xlCategory,Excel.XlAxisGroup.xlSecondary);
LineAxis.MinimumScale = 0;
LineAxis.MaximumScale = 1;
LineAxis.MajorTickMark = Excel.XlTickMark.xlTickMarkNone;
LineAxis.Format.TextFrame2.TextRage // but these are read only , and I need to set them