Dundas Charting列上的C#条件颜色规则

时间:2017-07-31 09:28:49

标签: c# charts dundas

我正在使用C#在Visual Studio中使用Dundas Charts。

我有一个包含一个系列的图表 - 图表在列上显示系列。我目前正在使用以下代码添加该系列:

    public void AddSeries(string name, SeriesChartType type, IEnumerable xValues, IEnumerable yValues, bool showLabels = true)
    {
        Series s = new Series();
        s.Points.DataBindXY(xValues, yValues);
        s.LegendText = name;
        s.Type = type;
        if (type == SeriesChartType.Line) s.Color = Color.FromArgb(139,0,0);
        else s.Color = _palette[_chart.Series.Count < _palette.Length ? _chart.Series.Count : 0];
        s.ShowLabelAsValue = showLabels;
        s.FontAngle = -90;
        s.LabelFormat = string.IsNullOrWhiteSpace(_chart.ChartAreas["Default"].AxisY.LabelStyle.Format) ? "P0" : _chart.ChartAreas["Default"].AxisY.LabelStyle.Format;
        s.Font = new Font("Arial", 5);

        _chart.Series.Add(s);
    }

我想根据该列的值更改每列的颜色 - 这将基于int目标值。 例如,如果列小于目标值,则应显示红色,否则应显示绿色。

你会如何推荐这样做?

1 个答案:

答案 0 :(得分:0)

我找到了一个合适的答案,我对这个解决方案唯一的问题是,根据x轴上的点数,列的宽度会有所不同。

    void GetColourCodedSeries(ChartHelper chartHelper, DataTable table, string groupingColumn, string valueColumn)
    {
        List<Color> _palette = new List<Color>();

        var x = table.AsEnumerable().Select(f => f.Field<string>(groupingColumn)).ToArray();

        foreach (DataRow row in table.Rows)
        {
            if (Convert.ToDecimal(row[valueColumn].ToString()) >= _availabilityTarget) _palette.Add(Color.FromArgb(0, 176, 80));
            else _palette.Add(Color.FromArgb(139, 0, 0));

            List<decimal?> y = new List<decimal?>();

            foreach(var value in x)
            {
                if (value == row[groupingColumn].ToString()) y.Add(Convert.ToDecimal(row[valueColumn].ToString()));
                else y.Add(null);
            }

            chartHelper.AddSeries(SeriesChartType.Column, x, y, _palette.ToArray());
        }
    }

此代码根据值为列创建动态调色板。然后我在表格中每行添加一个系列,当添加系列时,我包括所有可能的x值和每个这些值的1 y值 - 但是,只有一个y轴值具有实际值,所有其他人被标记为空值(我确实尝试使用0值,但这使得图表看起来非常混乱)。