Hi,
When you say axis titles don't support rotation, you mean that your library automatically is supposed to be rotating the Y axis (or 'left' axis)? This is exactly my axis property, the 'left' axis was taken directly from the example mentioned above:
axes: [{
type: 'category',
location: 'bottom',
categories: $.map(dailyData, function(val,i) {return val.date;}),
labels: {
font: '12px sans-serif bold',
}
},{
type: 'linear',
location: 'left',
title: { text: 'Axis Title Y', fillStyle: 'green' }
}]
My title 'Axis Title Y' shows up in normal left-to-right orientation, above the Y axis. Could it be something your library does if there isn't room for the Y axis?
-= chuck