displayValue = function() {
texts.append("text")
.text(function(){
return dataset[0].value;
})
.attr('id', "Value")
// .attr('transform', "translate(" + trX + ", " + trY+ ")")
.attr('transform', "translate(" + (width + margin.left) + ", " + ((height + margin.top) / 1.5) + ")")
.attr("font-size",18)
.style("fill", '#000000');
}