如何在winforms中自定义livecharts中的图例?我正试图得到这样的东西。
在实时图表winforms中,我只能看到这两个选项
scatterChart.LegendLocation = LegendLocation.Right;
scatterChart.DefaultLegend.Visibility = Visibility.Visible;
但这并不能帮助我实现我在链接中展示的传奇。想知道一些解决方案。提前谢谢。
我们可以创建一个DefaultLegend,并将我们的属性添加到其中,然后按如下方式分配给图表的DefaultLegend:
DefaultLegend customLegend = new DefaultLegend();
customLegend.BulletSize = 15;
customLegend.Foreground = Brushes.White;
customLegend.Orientation = System.Windows.Controls.Orientation.Horizontal;
cartesianChart1.DefaultLegend = customLegend;
这非常有效。感谢
DefaultLegend customLegend = new DefaultLegend();
customLegend.BulletSize = 15;
customLegend.Foreground = Brushes.White;
customLegend.Orientation = System.Windows.Controls.Orientation.Horizontal;
customLegend.FontSize = 9;
cartesianChart1.DefaultLegend = customLegend;