以下のコードの場合
foreach (LeaveType lvType in statsForBP.LeavesPerType.Keys)
{
var series = new Series();
series.Points.AddXY(lvType.TypeofLeave.ToString(),statsForBP.LeavesPerType[lvType]);
series.SmartLabelStyle.Enabled = false;
chart.Series.Add(series);
}
次の結果が得られます。
x 値を真下に持ってくる方法はありますか?