Infragistics改变系列图表颜色

时间:2014-06-17 05:24:01

标签: infragistics

我在使用图表的默认DataPointColor.Different或DataPointColor.Auto时遇到问题,它会返回相似的颜色,我想以某种方式设置一个选项,以便为我的饼图,折线图返回颜色,或条形图明显不同。

我正在使用InfragisticsSL4 v 10.2。

对此的任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

我在项目中使用以下代码解决了这个问题:

For i As Integer = 0 To Series.DataPoints.Count - 1
  Dim r As Integer = CInt(Math.Ceiling(Rnd() * 255))
  Dim g As Integer = CInt(Math.Ceiling(Rnd() * 255))
  Dim b As Integer = CInt(Math.Ceiling(Rnd() * 255))
  Series.DataPoints(i).Fill = New SolidColorBrush(Color.FromArgb(255, r, g, b))
Next