This question is locked. New answers and comments are not allowed.
This is what I'm specifying for my CandlestickSeries:
But it has no effect on the rendered candlesticks - I still get default fill. Anything I'm doing wrong?
Style candlestickStyle = new Style(typeof(Candlestick));candlestickStyle.Setters.Add(new Setter(Candlestick.UpFillProperty, new SolidColorBrush(Colors.Green)));candlestickStyle.Setters.Add(new Setter(Candlestick.DownFillProperty, new SolidColorBrush(Colors.Red)));series.DefaultVisualStyle = candlestickStyle;But it has no effect on the rendered candlesticks - I still get default fill. Anything I'm doing wrong?