WPF C1Chart 鼠标移动或点击获取PlotArea
本帖最后由 szpzr 于 2024-4-14 14:23 编辑老师,您好!
chart.View.PlotAreas.Add(new PlotArea()
{
Row =1,
Stroke = new SolidColorBrush(Colors.DarkGray),
StrokeThickness = 0.5,
Background = new SolidColorBrush(Colors.Blue) { Opacity = 0.1 }
});
chart.View.PlotAreas.Add(new PlotArea()
{
Row = 0,
Stroke = new SolidColorBrush(Colors.DarkGray),
StrokeThickness = 0.5,
Background = new SolidColorBrush(Colors.Green) { Opacity = 0.1 }
});
chart的鼠标移动或点击事件中如何判断点击 PlotArea 索引行?
你说的“PlotArea 索引行”是什么意思?
可以尝试用从chart的hittest方法试试看看能否得到你需要的结果
页:
[1]