我正在使用d3 chartplotter。在我的应用程序中,我希望程序自动检测显示的水平轴的当前开始和结束值。例如,让我们说用户放大绘制的数据。我知道轴值会自动调整并显示在绘图仪上。我想要的是(在点击按钮时),程序应该提取当时显示的X轴的起点和终点值。我需要这两个值来做其他事情。我正在使用C#wpf来编程btw。我尝试在论坛中搜索它,但到目前为止没有运气。 这是我到目前为止所拥有的。但不确定如何进一步实现我的目标。
CursorCoordinateGraph coordinategraph = new CursorCoordinateGraph();
plotter.Children.Add(coordinategraph);
Upon buttonclick()
{ Retrieve the first and last x-coordinate value on display...}
非常感谢任何正确方向的指针。
谢谢!
答案 0 :(得分:0)
我明白了。碰巧太简单了:))
var v = plotter.Visible;
int X_left = Convert.ToInt32(v.Left);
int X_right = Convert.ToInt32(v.Right);