Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi,
i don't get access to the secondary axis by using the excel interop in c# at the following code i get an error "Exception from HRESULT: 0x800A03EC" (-2146827284) //Add a Chart for the selected data. oChart = (Excel.Chart)wb.Charts.Add(Missing.Value, Missing.Value, Missing.Value, Missing.Value); oChart.ChartType = XlChartType.xlColumnStacked; oChart.set_HasAxis(Excel.XlAxisType.xlCategory, Excel.XlAxisGroup.xlPrimary, true); oChart.set_HasAxis(Excel.XlAxisType.xlValue, Excel.XlAxisGroup.xlPrimary, true); oChart.set_HasAxis(Excel.XlAxisType.xlCategory, Excel.XlAxisGroup.xlSecondary, true); oChart.set_HasAxis(Excel.XlAxisType.xlValue, Excel.XlAxisGroup.xlSecondary, true); Excel.Axis axCategory2 = (Excel.Axis)oChart.Axes(Excel.XlAxisType.xlCategor y, Excel.XlAxisGroup.xlSecondary); axCategory2.CategoryType = XlCategoryType.xlAutomaticScale; axCategory2.Border.Weight = 1; Excel.Axis axCategory = (Excel.Axis)oChart.Axes(Excel.XlAxisType.xlCategor y, Excel.XlAxisGroup.xlPrimary); axCategory.Border.LineStyle = Excel.XlLineStyle.xlDot; axCategory.TickLabels.Orientation = XlTickLabelOrientation.xlTickLabelOrientationHoriz ontal; axCategory.TickLabels.Font.Size = 8; oResizeRange = oWS.get_Range("B1:B" + anzDSReal.ToString(), Missing.Value); oChart.SetSourceData(oResizeRange, Excel.XlRowCol.xlColumns); oChart.HasLegend = false; .... can anyone help? Thx Thomas |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Format date as Custom YYYY yields 2005, but fx still shows 1/1/2005 | Excel Programming | |||
I have a date 51231 (2005,dec,31) -I want to change to 2005/12/31 | Excel Worksheet Functions | |||
Convert alphanumerical(eg. 12.11.2005) to date as 12-Nov-2005 in e | Excel Discussion (Misc queries) | |||
VBA Code to access the ACT! 2005 data bases and tables | Excel Programming | |||
chnage date from tuesday 4 January 2005 10:39.26 to 04/01/2005 | Excel Worksheet Functions |