1
        let graph = CPTXYGraph(frame: hostview.bounds)
        hostview.hostedGraph = graph
        graph.paddingLeft = 0.0
        graph.paddingTop = 0.0
        graph.paddingRight = 0.0
        graph.paddingBottom = 0.0
        graph.axisSet = nil

到目前为止,这是我的代码。我想绘制一个函数。f(x) = x^2 + 10 在这种情况下应该是函数值。我希望 x 轴和 y 轴从 0 开始,在 100 结束。

有人可以帮我实现这个 f(x) 吗?

4

1 回答 1

0

图表的初始化逻辑应如下所示。使用这个viewDidLoad

func initPlot() {
    let graph = CPTXYGraph(frame: hostView.bounds)
    graph.plotAreaFrame?.masksToBorder = false
    hostView.hostedGraph = graph
    graph.backgroundColor = UIColor.white.cgColor
    graph.paddingBottom = 40.0
    graph.paddingLeft = 40.0
    graph.paddingTop = 40.0
    graph.paddingRight = 40.0

    //configure title
    let title = "f(x) = x*x + 10"
    graph.title = title
    
    //configure axes
    let axisSet = graph.axisSet as! CPTXYAxisSet

    if let x = axisSet.xAxis {
        x.majorIntervalLength   = 20
        x.minorTicksPerInterval = 1
    }

    if let y = axisSet.yAxis {
        y.majorIntervalLength   = 5
        y.minorTicksPerInterval = 5
    }

    let xMin = 0.0
    let xMax = 100.0
    let yMin = 0.0
    let yMax = 100.0
    guard let plotSpace = graph.defaultPlotSpace as? CPTXYPlotSpace else { return }
    plotSpace.xRange = CPTPlotRange(locationDecimal: CPTDecimalFromDouble(xMin), lengthDecimal: CPTDecimalFromDouble(xMax - xMin))
    plotSpace.yRange = CPTPlotRange(locationDecimal: CPTDecimalFromDouble(yMin), lengthDecimal: CPTDecimalFromDouble(yMax - yMin))
    
    //create the plot
    plot = CPTScatterPlot()
    plot.dataSource = self
    graph.add(plot, to: graph.defaultPlotSpace)
}

此外,您需要实施CPTScatterPlotDataSource,在其中定义numberOfRecords和 各自的XY

extension ViewController: CPTScatterPlotDataSource {
    func numberOfRecords(for plot: CPTPlot) -> UInt {
        return 100
    }
    
    func number(for plot: CPTPlot, field: UInt, record: UInt) -> Any? {
        switch CPTScatterPlotField(rawValue: Int(field))! {
        case .X:
            return record
        case .Y:
            return (record * record) + 10
        default:
            return 0
        }
    }
}

在此处输入图像描述

于 2021-09-22T02:35:23.867 回答