Code Monkey home page Code Monkey logo

Comments (4)

ivnsch avatar ivnsch commented on August 26, 2024

Well, you could just re-create the chart, this would generate the same visual effect as re-animating it, I think. Otherwise it's not supported, feel free to adjust the code!

from piecharts.

mansuu avatar mansuu commented on August 26, 2024

I am also having same problem. Every time I Draw chart, but still no difference.

from piecharts.

robinlietar avatar robinlietar commented on August 26, 2024

How should we recreate the chart ?
override func viewDidAppear(_ animated: Bool) {
chartView = PieChart(frame: chartView.frame)
chartView.layers = [createTextWithLinesLayer()]
chartView.delegate = self
chartView.models = createModels() // order is important - models have to be set at the end

This raises an error : "found nil while unwrapping an Optional value"

from piecharts.

robinlietar avatar robinlietar commented on August 26, 2024

Found a solution : in willAppear if it's not the firstTime create a second one,
if !firstTime {
chartView2 = PieChart(frame: framePieChart)
chartView2.frame = framePieChart

        chartView2.innerRadius = 0.0
        chartView2.selectedOffset = 0.0
        chartView2.animDuration = 0.0
        chartView2.outerRadius = chartView.outerRadius
        chartView2.strokeColor = UIColor.white
        chartView2.strokeWidth = 1.0
        chartView2.layers = [createTextWithLinesLayer()]
        chartView2.delegate = self
        chartView2.models = createModels() // order is important - models have to be set at the end
        chartView.isHidden = true
        contentView.addSubview(chartView2)
    }

and in override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
chartView2.removeFromSuperview()
}

from piecharts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.