From 2e65be46fb1dd403e8c2b7685a029fd2b8d47568 Mon Sep 17 00:00:00 2001 From: Frank Sauerburger <frank@sauerburger.com> Date: Thu, 1 Apr 2021 14:19:19 +0200 Subject: [PATCH] Add error band to ratio step line Closes #71 --- uhepp-js/src/components/UheppHist.jsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/uhepp-js/src/components/UheppHist.jsx b/uhepp-js/src/components/UheppHist.jsx index 4033ea2..5da414a 100644 --- a/uhepp-js/src/components/UheppHist.jsx +++ b/uhepp-js/src/components/UheppHist.jsx @@ -266,6 +266,19 @@ const Ratio = ({ highlightedBin={highlightedBin} onMouseOver={() => onMouseOverBin(bin_i)} onMouseOut={() => onMouseOverBin(null)} />) + stat.forEach((s, bin_i) => { + if (isFinite(s)) { + objects.splice(0, 0, <rect + key={`rect-num-uncert-${ri_i}-${bin_i}`} + x={xScale(edges[bin_i])} + width={xScale(edges[bin_i + 1]) - xScale(edges[bin_i])} + y={ratioScale(y_values[bin_i] + s)} + height={ratioScale(y_values[bin_i] - s) - ratioScale(y_values[bin_i] + s)} + fill="url(#errorBand)" + onMouseOver={() => onMouseOverBin(bin_i)} + onMouseOut={() => onMouseOverBin(null)} />) + } + }) } else if (ratio_item.type == "points") { for (let bin_i=0; bin_i < n_bins; bin_i++) { -- GitLab