在Steema TeeChart中 - 折线图,如果在xAxis中添加日期时间,轴图例文字显示2次(参见Image1.png),这是我的代码
**
foreach (HeatunitGraph item in graphdata)
{
dc = Convert.ToDouble (item.Value);
currentline.Add(Convert.ToDateTime(item.ActionDate), dc);
}
**
我也希望在当前日期显示一行。正是我需要的是(ref Image2.png)
答案 0 :(得分:3)
您需要设置所需的底轴增量。否则它将是自动的。您可以将它设置为这样的一天:
tChart1.Axes.Bottom.Increment = Steema.TeeChart.Utils.GetDateTimeStep(Steema.TeeChart.DateTimeSteps.OneDay);