We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24669a5 commit e26f566Copy full SHA for e26f566
1 file changed
anyplotlib/figure_esm.js
@@ -1866,6 +1866,7 @@ function render({ model, el }) {
1866
const xArr = p._1dXArr || (st.x_axis_b64 ? _decodeF64(st.x_axis_b64) : (st.x_axis||[]));
1867
const yData = p._1dDArr || (st.data_b64 ? _decodeF64(st.data_b64) : (st.data||[]));
1868
const x0=st.view_x0||0, x1=st.view_x1||1;
1869
+ const dMin=st.data_min, dMax=st.data_max;
1870
mkCtx.clearRect(0,0,pw,ph);
1871
const sets=st.markers||[];
1872
if(!sets.length) return;
0 commit comments