Sorry if this has been hashed over before, but I coudn&#39;t find it. I found the same question years ago, but no resolution. I want to invert the axis of a 2D plot, and corresponding plot. But the call to SetReverseYAxis(), just inverts the labels and axis. The plots themselves remain uninverted, and now no longer match the labels. This is not what I was expecting.<br>
<br>Is there a way to reverse the plots themselves? I could do a hack and just reverse the order in the input data objects, but if they are not regularly sampled, this will break (I have multiple inputs). It also seems strange to have to do this. It seems to me that you should be able to do this at the XYPlotActor level. Any ideas or insight?<br>
<br>Thanks,<br><br>-Trevor<br><br>    vtkXYPlotActor *_plot = vtkXYPlotActor::New();<br>        _plot-&gt;AddDataObjectInput(_dataObject);<br>        _plot-&gt;AddDataObjectInput(_dataObject2);<br>        _plot-&gt;SetXValuesToValue();<br>
        _plot-&gt;SetReverseYAxis(1);  // Just flips axis, not plots<br><br>