限制在SciChart中缩小

时间:2016-10-17 14:52:37

标签: scichart

我有一个图表,需要在X轴上进行缩放和平移。它有一系列标记的数据点,其目的是能够放大并在缩放时水平移动图形。 我使用PinchZoomModifier和TouchPanModifier来实现这一目标,并且它的工作原理正常。 但是,不应该缩小图表以查看我的数据点范围之外的内容,因为它在我的上下文中没有意义。我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:0)

我不知道你的目标是什么平台,但我假设WPF(基于之前的问题历史记录)。

您可以使用Clipping the Axis.VisibleRange on Zoom and Pan中的一种技术限制缩放。

所有SciChart平台都有类似的方法来剪辑或限制VisibleRange。例如,SciChart iOS has the VisibleRangeLimit APISciChart Android has the MinimalZoomConstrain API

披露:我是scichart项目的技术负责人

答案 1 :(得分:0)

您可以通过覆盖SCIPinchZoomModifier来解决此问题:

class CustomZoomModifier: SCIPinchZoomModifier {

  var maxValue = 3.0
  var minValue = -1.0
  var currentXZoom = 0.0
  var currentYZoom = 0.0

  override func performZoom(at mousePoint: CGPoint, xValue: Double, yValue: Double) {
    var newXValue = 0.0
    var newYvalue = 0.0
    if xValue + currentXZoom <= maxValue && xValue + currentXZoom >= minValue {
      newXValue = xValue
      currentXZoom += xValue
    }
    if yValue + currentYZoom <= maxValue && yValue + currentYZoom >= minValue {
      newYvalue = yValue
      currentYZoom += yValue
    }

    if newXValue != 0.0 || newYvalue != 0.0 {
      super.performZoom(at: mousePoint, xValue: newXValue, yValue: newYvalue)
    }
  }
}