我想在LiveCharts中为C#winforms项目的笛卡尔图添加边框
我在github上尝试了一些广泛的搜索和示例,但没有任何提示。 Base中有BorderBrush和BorderThickness,但不知道如何设置:
cartesianchart1.Base.BorderBrush
当前的解决方法是使用下面的代码绘制一条线以及X和Y轴的最小值和最大值。
Sections = new SectionsCollection
{
new AxisSection
{
Value = 0.25,
StrokeThickness = 1,
Stroke = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromRgb(0, 0, 0))
},
}