> Unfortunately the plot has to be an XY plot, with time on the X axis,
> and bearing on the Y axis.
The graph scales in LV support linear and log mappings, and they always
represent a number line, no loops or cycles are supported. You can
easily do this mod arithmetic on the diagram before the data is sent to
the graph, though cursors will display the modified data and not the
original data, so if you are using cursors, you will want you own cursor
readout -- not actually very hard to do.
A second option, look at using the picture control graphing VIs. There
are VIs for doing XY plots with scales and grids. You then have
complete control over the scale code, and placing a mod function inside
the scale mapping code will do what yo
u want. Additionally, if you want
to be able to label the scale differently, to be able to slide the 0/360
point around on the scale, you apply the mod to the value being
formatted and displayed as well.
Some of the VIs I'm talking about are in the graph palette, like the
polar plot, others are in examples/picture/demos.llb and have XY graph
in the name. You will find that they all use a common set of subVIs
with the graphing/mapping/plotting done on the diagram.
Greg McKaskle