我正在使用 System.Web.UI.DataVisualization.Charting 用于创建图表。
我想根据不同的日期绘制不同的时间价值
其中时间值将在Y轴中,而日期值将在X轴中。
我尝试使用
chart.Series[0].XValueType = ChartValueType.Date;
chart.Series[0].YValueType = ChartValueType.Time;
从
添加im Dictionary<DateTime,DateTime>
和
chart.Series[0].Points.AddXY(item.Key.ToOADate(),item.Value.ToOADate());
但它给出了45度折线图,但我希望它像趋势报告。
答案 0 :(得分:0)
其实我的错误是,我从字典中添加了系列的项目然后我给了xvaluetype和yvaluetype
但是现在我通过在将项目添加到系列之前给出xvalue类型和yvaluetype来修复它。