1

我正在绘制具有三个系列(两列和一条覆盖线)的 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);
            }

如果我颠倒将系列添加到图表的顺序,则绘图区域是正确的,但是线系列位于列的后面。

有任何想法吗?谢谢。

4

1 回答 1

0

我假设您有一个要添加系列的图表区域?如果是这样,您可以修改属于该图表区域的 Y 轴的最大值。它会是这样的:

// put this block above your foreach loop
double maxval = 100; // <-- put your maximum value here.
chart.ChartAreas[0].AxisY.Maximum = maxval;

使用 LINQ,您可以轻松找到所有系列中的最大值,然后将发现的最大值设置为 AxisY.Maximum。

于 2013-08-13T17:28:18.250 回答