Mike,
This is happening because in CVI 7.0 a new attribute was added to the graph that would determine whether minor grid lines were visible (affecting both linear and log scales). By default, this attribute is turned off.
Inadvertently, this attribute had the effect of causing graphs in log scale mode to not show the minor grid lines if they were run in a version of the CVI runtime 7.0 or later. Previously, log scales always showed minor grid lines.
There is a workaround for this, which is to programmatically turn on this attribute. Since you only have CVI 6.0 this attribute will not show up in your documentation or your header file, but you can still set it using the following code:
SetCtrlAttribute (panel, graph, 1136, 1); // sets the attribute for the X-axis
SetCtrlAttribute (panel, graph, 1137, 1); // sets the attribute for the Y-axis
I apologize for the inconvenience.
Luis
NI