I am using Spreadsheetgear to create charts in Excel. I create a column chart with an axis title on the y-axis.
chart.Axes[SpreadsheetGear.Charts.AxisType.Value].HasTitle = true;
chart.Axes[SpreadsheetGear.Charts.AxisType.Value].AxisTitle.Text = "Market Value";
However, the axis tile is in a horizontal orientation. I want it in a vertical orientation, but have not been able to find a way to do that in my code. (In Excel, I can rotate the axis title changing its orientation.)