In flot, is there any way I can get the axes to show $10, $20 etc, rather than just 10, 20?
I've checked the documentation but don't see a way, but it seems like to be a common requirement - especially since you can't (easily) label the axes.
You are looking for the "tickFormatter" option in the API.
For example:
var data1 = [[0,3],[10,1],[20,2],[40,8],[50,10]];
someFunc = function(val, axis){
return "$" + val
}
plot = $.plot($("#placeholder"),
[{ data: data1}], {
xaxis: { tickFormatter: someFunc }
});
Produces:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With