如何为WPF中的每个柱形图系列创建不同的颜色?

时间:2019-10-10 17:55:23

标签: .net wpf

我想使用WPF为柱形图的每个系列或列提供不同的颜色。

我的代码如下:-

        ColumnSeries CL = new ColumnSeries();
        CL.IndependentValueBinding = new Binding("Name");
        CL.DependentValueBinding = new Binding("ActionValue");
        //set Foreground color to series
        Style styleSeries = new Style { TargetType = typeof(Control) };
        styleSeries.Setters.Add(new Setter(Control.BackgroundProperty, System.Windows.Media.Brushes.LightSteelBlue));
        CL.DataPointStyle = styleSeries;
        SimulationChart.Series.Clear();
        SimulationChart.Series.Add(CL);

0 个答案:

没有答案