我正在绘制具有三个系列(两列和一条覆盖线)的 Microsoft System.Web.UI.DataVisualization.Charting.Chart。似乎 y 轴上限是根据添加到图表的第一个系列中的数据范围自动计算的。随后,当 y 值大于第一个系列的 y 值时,不会渲染任何系列。在这种情况下,我希望它使用任何系列的最大值。
该系列通过通用方法添加到图表中:
foreach (var s in model.Series)
{
var chartSeries = new Series(s.Title);
chartSeries.ChartType = s.Type;
chartSeries.Color = s.DrawColour;
// add the data to the series
foreach (DataRow row in data.Tables[0].Rows)
{
chartSeries.Points.AddXY(row[model.XAxis.DataColumnName], row[s.ColumnName]);
}
// does the series name come from a column? if not use the plain text. if the column has a caption use it, otherwise the column name.
chartSeries.Name = data.Tables[0].Columns.Contains(s.Title) ? String.IsNullOrEmpty(data.Tables[0].Columns[s.Title].Caption) ? data.Tables[0].Columns[s.Title].Caption : data.Tables[0].Columns[s.Title].ColumnName : s.Title;
chart.Series.Add(chartSeries);
}
如果我颠倒将系列添加到图表的顺序,则绘图区域是正确的,但是线系列位于列的后面。
有任何想法吗?谢谢。