0
我想以編程方式設置WPF工具包條形圖中列系列的寬度。以下是現有的代碼。但我無法使用ColumnDataPoint.WidthProperty設置寬度。WPF工具包條形圖,以編程方式設置列寬
任何建議都會有很大的幫助!
Style columnStyleRed = new Style(typeof(ColumnDataPoint));
columnStyleRed.BasedOn = this.Resources["CustomStyle"] as Style;
Setter setBackgroundRed = new Setter(ColumnDataPoint.BackgroundProperty, new SolidColorBrush(Colors.DarkRed));
Setter setWidth = new Setter(ColumnDataPoint.WidthProperty, 20);
columnStyleRed.Setters.Add(setBackgroundRed);
謝謝!