diff --git a/js/scripts/JSRootPainter.v7.js b/js/scripts/JSRootPainter.v7.js
index c80dc7766b61de5a85f51dd730f676539443a1b6..a3be2c071be27909b42e22437a8ab102f3347689 100644
--- a/js/scripts/JSRootPainter.v7.js
+++ b/js/scripts/JSRootPainter.v7.js
@@ -2780,11 +2780,11 @@
           w = width, h = height, x = 0, y = 0,
           svg_pad = null, svg_rect = null, btns = null;
 
-      if (this.pad && this.pad.fAttr) {
-         x = Math.round(width * this.GetNewOpt(this.pad.fAttr, "pos_horiz_normal", 0));
-         y = Math.round(height * this.GetNewOpt(this.pad.fAttr, "pos_vert_normal", 0));
-         w = Math.round(width * this.GetNewOpt(this.pad.fAttr, "size_horiz_normal", 1));
-         h = Math.round(width * this.GetNewOpt(this.pad.fAttr, "size_vert_normal", 1));
+      if (this.pad && this.pad.fPos && this.pad.fSize) {
+         x = Math.round(width * this.pad.fPos.fHoriz.fArr[0]);
+         y = Math.round(height * this.pad.fPos.fVert.fArr[0]);
+         w = Math.round(width * this.pad.fSize.fHoriz.fArr[0]);
+         h = Math.round(height * this.pad.fSize.fVert.fArr[0]);
       }
 
       if (pad_enlarged === this.pad) { w = width; h = height; x = y = 0; }
@@ -3209,6 +3209,7 @@
 
             // we select current pad, where all drawing is performed
             var prev_name = padpainter.CurrentPadName(padpainter.this_pad_name);
+
             padpainter.DrawNextSnap(snap.fPrimitives, -1, function() {
                padpainter.CurrentPadName(prev_name);
                draw_callback(padpainter);
@@ -3818,8 +3819,8 @@
          return (len.fArr && (len.fArr.length>indx)) ? len.fArr[indx] : dflt;
       }
 
-      var w = this.pad_width(),
-          h = this.pad_height(),
+      var w = this.pad_width(this.this_pad_name),
+          h = this.pad_height(this.this_pad_name),
           h_norm = GetV(pos.fHoriz, 0, 0),
           h_pixel = GetV(pos.fHoriz, 1, 0),
           h_user = GetV(pos.fHoriz, 2),
diff --git a/js/scripts/JSRootPainter.v7hist.js b/js/scripts/JSRootPainter.v7hist.js
index c30665df8f5375883a779d95b0a28172731ebb76..77fec51a51979e015bffefd4d9f76c8b1f516a36 100644
--- a/js/scripts/JSRootPainter.v7hist.js
+++ b/js/scripts/JSRootPainter.v7hist.js
@@ -59,6 +59,7 @@
       var obj = this.GetObject(), histo = this.GetHImpl(obj);
 
       if (histo && !histo.getBinContent) {
+         console.log('histo type', histo._typename);
          if (histo.fAxes._1) {
             histo.getBin = function(x, y) { return (x + this.fAxes._0.fNBins * y); }
             histo.getBinContent = function(x, y) { return this.fStatistics.fBinContent[this.getBin(x, y)]; }
diff --git a/js/scripts/JSRootPainter.v7more.js b/js/scripts/JSRootPainter.v7more.js
index c2c941f576763e9dfe1de6d75a949d5db7c0f134..1b09e280f46bfff850646089637cf7e6a421a4a8 100644
--- a/js/scripts/JSRootPainter.v7more.js
+++ b/js/scripts/JSRootPainter.v7more.js
@@ -64,18 +64,18 @@
            line_style   = pp.GetNewOpt(attr, "line_style", 1),
            line_color   = pp.GetNewColor(attr, "line_color", "black");
 
-    this.CreateG();
-
-    this.draw_g
-        .append("svg:line")
-        .attr("x1", p1.x)
-        .attr("y1", p1.y)
-        .attr("x2", p2.x)
-        .attr("y2", p2.y)
-        .style("stroke", line_color)
-        .attr("stroke-width", line_width)
+       this.CreateG();
+
+       this.draw_g
+           .append("svg:line")
+           .attr("x1", p1.x)
+           .attr("y1", p1.y)
+           .attr("x2", p2.x)
+           .attr("y2", p2.y)
+           .style("stroke", line_color)
+           .attr("stroke-width", line_width)
 //        .attr("stroke-opacity", line_opacity)
-        .style("stroke-dasharray", JSROOT.Painter.root_line_styles[line_style]);
+           .style("stroke-dasharray", JSROOT.Painter.root_line_styles[line_style]);
    }
 
 
@@ -114,13 +114,13 @@
 
 
    function drawMarker() {
-       var marker         = this.GetObject(),
-           attr           = marker.fAttr,
-           pp             = this.pad_painter(),
-           p              = pp.GetCoordinate(marker.fP),
-           marker_size    = pp.GetNewOpt(attr, "marker.size", 1),
-           marker_style   = pp.GetNewOpt(attr, "marker.style", 1),
-           marker_color   = pp.GetNewColor(attr, "marker.color", "black");
+       var marker       = this.GetObject(),
+           attr         = marker.fAttr,
+           pp           = this.pad_painter(),
+           p            = pp.GetCoordinate(marker.fP),
+           marker_size  = pp.GetNewOpt(attr, "marker_size", 1),
+           marker_style = pp.GetNewOpt(attr, "marker_style", 1),
+           marker_color = pp.GetNewColor(attr, "marker_color", "black");
 
            var att = new JSROOT.TAttMarkerHandler({ style: marker_style, color: marker_color, size: marker_size });