User Tools

Site Tools


root:setxaxisrangetgraph

Set the range of the x axis in a TGraph

Problem

If you have a TGraph, SetRangeUser will not work for the x axis.

TGraph* myGraph = new TGraph();
...
myGraph->SetRangeUser(lower,upper);

will not complain but also not do anything. Or not the thing you want.

You have to use SetLimits(), like:

TGraph* myGraph = new TGraph();
...
myGraph->SetLimits(lower,upper);
root/setxaxisrangetgraph.txt · Last modified: 2010/11/06 15:06 by decianm