I have a horizontal bar which I want to change colour when in range, which works, however the bar has a gradient and can see how to disable the gradient and change colour.
Color[] colors = new Color[] { Color.Red, Color.Green };
BarItem myBar = pane1.AddBar("Null", list1Null, Color.Red);
myBar.Bar.Fill = new Fill(colors);
myBar.Bar.Fill.Type = FillType.GradientByY;
Has anyone achieved this please?