I think it can be done!
But you'll probably have to do it manually unless you feel like being CVI savvy enough to get into the source code for how TestStand builds HTML Reports (If you are, let me know and I can help you find where the function you need is)
The report generator takes your array and passes it off to a DLL in charge of rendering it into a string that can be written to an html file. If you ever view the 'source' of your html report you'll see inside it is embedded a function call to:
TSGRAPH1.PlotY()
or something similar. I don't think this has changed from version 2.x to version 3.x. As far as I know there's no way to change the axis labels, but the function does have 3 fairly straightforward parameters, the array to plot, the Xo (origin) and
the DeltaX. If you were to change the DeltaX from "1" to .01, and save the file, the next time you display it in your web browser the graph will look different.
I doubt this is documented much of anywhere, so with luck a NI guy might see this and offer any other tips.
Editing the CVI function call and rebuilding the DLL that generates this line of html would allow you to have those 'improved' parameters as part of your test sequence, but it might not be worth the bother.
Cheers!
Elaine R.
www.bloomy.com
Cheers,
Elaine R.
www.bloomy.com