> I've tried this with all graph types. I want the points to be evenly
> spaced on the x-axis. I want the marker labels on the x-axis to be
> arbitrary. e.g.: plotting gain error (y-axis: generally {-1%..1%})
> versus gain setting (x-axis: generally {48, 24, 8, 4, 2, 1, 0.5,
> 0.025...}).
>
The LV graphs support linear and log scaling, and they support a linear
transform between the plotted value and the labeled value, but you are
correct, they do not allow arbitrary labeling of the points on the scale.
To work around this, you might look at placing cursors/markers on the
graph. Show the text labels, hide the lines and points, and set the
color however you like for the text. The marker location can be at the
bottom or top of the g
raph, and the text can be your arbitrary values.
Then hide the X Scale.
Another approach is to hide the scale and have an array of strings or
numerics that you overlay. The problem with this approach is that as
fonts change when you change platforms, or MS changes the default font,
your array and graph won't line up. The markers on the graph always will.
Greg McKaskle