Skip to content
Snippets Groups Projects
Commit 67d007c5 authored by Olivier Couet's avatar Olivier Couet
Browse files

Update release notes.

parent 921b7982
No related branches found
No related tags found
No related merge requests found
...@@ -127,9 +127,24 @@ The legacy iterators have been flagged with a special deprecation macro that can ...@@ -127,9 +127,24 @@ The legacy iterators have been flagged with a special deprecation macro that can
- `TBox::DistancetoPrimitive` and `TBox::ExecuteEvent` now work in log scales (by Jérémie Dudouet). - `TBox::DistancetoPrimitive` and `TBox::ExecuteEvent` now work in log scales (by Jérémie Dudouet).
- Take the line attributes into account when drawing a histogram with option bar or hbar. - Take the line attributes into account when drawing a histogram with option bar or hbar.
They were ignored until now. They were ignored until now.
- The new draw option MIN0 makes same effect as gStyle->SetHistMinimumZero(1), but can be specified - The new draw option MIN0 makes same effect as gStyle->SetHistMinimumZero(1), but can be specified
individually for each histogram individually for each histogram.
- Improve the line clipping when a histogram is drawn with option "L". The following
example shows the improvement.
~~~ {.cpp}
{
auto h = new TH1F("h","h",5,0.5,5.5);
h->SetBinContent(1,100000);
h->SetBinContent(2,10000);
h->SetBinContent(3,1000);
h->SetBinContent(4,100);
h->SetBinContent(5,10);
h->SetMinimum(50.);
h->SetMaximum(40000);
h->Draw("L*");
gPad->SetLogy();
}
~~~
## 3D Graphics Libraries ## 3D Graphics Libraries
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment