Hello,
I am currently using a VB application with Microsoft Excel 2007 that was previously used on the Excel 2003 version to generate a large number of charts based on a user-specified file. I have found that the 2007 version is considerably slower at generating these charts because it is slow at updating every parameter in the chart (using VB code).
I have been curious if there is a way to change the parameters of a chart before drawing it to a sheet or without updating it immediately after every change.
For example:
Could the generated chart be updated only after the entire With statement somehow? Or use a template Chart object to generate the entire graph at once (I've looked into Chart Wizard but it appears to be limited in functionality and may not even work properly in 2007).![]()
With ActiveChart.Axes(xlValue) .MinimumScale = 16 .MaximumScale = 26 .MinorUnitIsAuto = True .MajorUnitIsAuto = True .Crosses = xlCustom .CrossesAt = 3 .MajorGridlines.Border.ColorIndex = 48 End With
Thank you for your assistance, please let me know if you would like to clarify my situation further.
Bookmarks