Olivier Couet
Olivier Couet
This PR fixes the 1st issue: https://github.com/root-project/root/pull/16093
To make it easier to debug interactively I made this C version of the 2nd issue: ``` void testErrorGraph_v2() { gStyle->SetEndErrorSize(10); auto c = new TCanvas(); c->Divide(3,1); c->SetGridx(); c->SetGridy(); const...
I took another look at the second "issue." In this case, the plot in Y-log scale is invalid because some points are negative along the Y-axis. The graph rendering does...
@ferdymercury > @pcanal @hageboeck @couet @guitargeek In MacOS, I am seeing `Library not loaded: @rpath/libgfortran.5.dylib` I see this message on the CI build for instance on macphsft31. I checked on...
@vepadulano can you post the 2 files generated by your macro ?
Thanks, I think I have an idea: TText inherits from TNamed. The text to be drawn is stored in the member `fTitle` of TNamed. The Member `fName` is not used....
I made a quick and dirty prototyping (for SVG only for the time being). The macro is: ``` void texturl() { auto t = new TText(.5,.5,"CERN"); t->Draw(); t->SetName("https://cern.ch"); // Will...
After a discussion with @vepadulano it appears that it might be better to add a data member `fUrl` to `TAttText`, so that all the classes inheriting from it will benefit...
@linev Yes that's also a nice possibility. Yes the TAttText approach might be not correct. You are right. What is the sense of TGaxis::SetUrl?
`#url` can be implemented in the classic TLatex, but that's a new keyword and it is not as easy as in web graphics. If it is really needed it can...