You can do this using the function d3.tickFormat: Demo .
var bytesToString = function (bytes) {
var fmt = d3.format('.0f');
if (bytes < 1024) {
return fmt(bytes) + 'B';
} else if (bytes < 1024 * 1024) {
return fmt(bytes / 1024) + 'kB';
} else if (bytes < 1024 * 1024 * 1024) {
return fmt(bytes / 1024 / 1024) + 'MB';
} else {
return fmt(bytes / 1024 / 1024 / 1024) + 'GB';
}
}
var xScale = d3.scale.log()
.domain([1, Math.pow(2, 40)])
.range([0, 480]);
var xAxis = d3.svg.axis()
.scale(xScale)
.orient('left')
.tickFormat(bytesToString)
.tickValues(d3.range(11).map(
function (x) { return Math.pow(2, 4 * x); }
));
You will also want to use your own values for tickValues.
source
share