Hi,
I'm not sure of the j-query syntax to reverse the x-axis if the user clicks on the x-axis of the chart. I got something like:
$(document).ready(function () {
var chartName = '#<%= Chart1.ClientID %>';
$(chartName).bind('axisLabelMouseDown', function (e, data) {
if (data.axis.name == "MyXAxis") {
data.axis.reversed = "True";
}
});
});
But the data.axis.reversed = "True"; is not correct.
Thanks,
Tobin