I am using jquery flot charting tools. Please see this chart (make sure you choose a large date range)
http://bzreports.azurewebsites.net/#/discounts
Notice the xaxis is squished together? I would like to position the xaxis labels vertically instead of horizontally. I have not found a way to get this to work...
The options I am using are
var options = {
xaxis: { ticks: _.map(data, function (item) { return [item.Id - 1, item.Discount]; }) },
yaxis: { tickFormatter: function(val, axis) { return val.formatMoney(2); } }
};