Graphics

 View Only
  • 1.  Piechart animation

    Posted 08-14-2013 17:17
    A little question to the guys of Ross: @bolson, @jmorrison, @gmaxheleau

    Any view on whether or when the Angle-feature of the cylinders might become available for keyframing?

    Because right now if you want to animate a piechart in, I can't see any way of doing it and it would be very helpful in some cases.

    Cheers,

    Kenneth


  • 2.  RE: Piechart animation

    Posted 08-19-2013 13:57
    Hi,

    There is no set date or release version of it yet! I will add it to our weekly development call and get back to you.

    Cheers,

    -g

    #XPression


  • 3.  RE: Piechart animation

    Posted 01-27-2014 16:00
    yes its, posiblem, just animate something from 0 to 1 on xpos (anim)

    (on render)

    Dim i as Integer

    Dim dato(4), anim, debug as xpTextObject

    Dim slice(4) as xpCylinderObject

    Self.GetObjectByName("debug", debug)

    Self.GetObjectByName("anim", anim)

    For i = 1 to 4

    Self.GetObjectByName("dato" & i, dato(i))

    Self.GetObjectByName("slice" & i, slice(i))

    Next i

    i = 0

    For i = 1 to 4

    slice(i).EndAngle = ((Dato(i).Text * 360) / 100) * anim.posX ((this will do the animation))

    if slice(i).EndAngle = 0 then

    slice(i).Visible = false

    else

    slice(i).Visible = true

    end if

    Next i

    i = 0

    #XPression