我正在创建一个带有一些线条的图表(使用 DataVisualization 工具包),我正在使用这样的类:
private static Style ResultStylex()
{
Color background = Color.FromRgb(255, 0, 0);
Style style = new Style(typeof(DataPoint));
Setter st1 = new Setter(BackgroundProperty, new SolidColorBrush(background));
Setter st2 = new Setter(HeightProperty, 8.8);
Setter st3 = new Setter(WidthProperty, 8.8);
style.Setters.Add(st1);
style.Setters.Add(st2);
style.Setters.Add(st3);
return style;
}
为每个 lineeries 更改线条和标记的颜色和大小。有没有办法使用这样的类(或类似的)来制作自定义数据点标记(如三角形、正方形等)而无需修改 xaml?或以其他方式?
WPF工具包图表中的点:更改数据值时数据点可视化的位置发生偏移(o,>,M)