diff --git a/tomcat/webapps/Trawl/histogram.jsp b/tomcat/webapps/Trawl/histogram.jsp
index c8d04c3d2de27f0f90f75f2cdfe660fbc33d7d7d..6a31a737aac02231ececa1871010073a12c30e09 100644
--- a/tomcat/webapps/Trawl/histogram.jsp
+++ b/tomcat/webapps/Trawl/histogram.jsp
@@ -11,7 +11,7 @@
 
 <body>
   
-  <div id="myDiv"><!-- Plotly chart will be drawn inside this DIV --></div>
+  <div id="histogram"><!-- Plotly chart will be drawn inside this DIV --></div>
   <script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
 	<script>
 
@@ -37,7 +37,6 @@
   	{ 	x: x,
     	y: y,
     	type: 'bar',
-    	orientation: 'h',
      	marker: {
     	color: 'blue',
     	},
@@ -61,6 +60,6 @@
     			}
     		}
 	}
-	Plotly.newPlot('Histogram', data,layout);  
+	Plotly.newPlot('histogram', data,layout);  
 	</script>
 </body>