/* Small devices */
@media (max-width: 768px) {
/* CSS here */
}
/* Small and Medium devices */
@media (max-width: 992px) {
/* CSS here */
}
/* Medium devices */
@media (min-width: 768px) and (max-width: 992px) {
/* CSS here */
}
/* Large and Extra large devices */
@media (min-width: 992px) {
/* CSS here */
}
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');
}