如何在Winforms中的实时图表中自定义图例?

时间:2018-11-27 12:19:29

标签: c# .net winforms livecharts

如何在Winforms的实时图表中自定义图例?我正在尝试获取诸如this之类的东西。

在实时图表winform中,我只能看到这两个选项

scatterChart.LegendLocation = LegendLocation.Right;
scatterChart.DefaultLegend.Visibility = Visibility.Visible;

但是,这不会帮助我实现链接中显示的图例。想知道一些解决方案。预先感谢。

2 个答案:

答案 0 :(得分:0)

我们可以创建一个DefaultLegend并将其添加到属性中,并分配给图表的DefaultLegend,如下所示:

DefaultLegend customLegend = new DefaultLegend();
customLegend.BulletSize = 15;
customLegend.Foreground = Brushes.White;
customLegend.Orientation = System.Windows.Controls.Orientation.Horizontal;

cartesianChart1.DefaultLegend = customLegend;

答案 1 :(得分:0)

这非常有用。谢谢

DefaultLegend customLegend = new DefaultLegend();
customLegend.BulletSize = 15;
customLegend.Foreground = Brushes.White;
customLegend.Orientation = System.Windows.Controls.Orientation.Horizontal;
 customLegend.FontSize = 9;
cartesianChart1.DefaultLegend = customLegend;