C#图表,条形图不以X轴为中心

时间:2015-04-05 05:20:19

标签: c# charts bar-chart

我使用.NET库创建了图表,这里是结果

enter image description here

以下是我的代码片段

Series series = new Series(namaChart);

foreach (var d in data)
{
  series.Points.AddXY(d.Tanggal, d.Jumlah);
}

chartPenjualan.Series.Add(series);

您可以看到上面生成的图表的蓝色条不以X轴为中心。它应该是2015年4月4日,第二个是2015年4月6日。有人可以给我一个建议吗?感谢

0 个答案:

没有答案