맨위로가기
 

SBCHART

닫기

Animation

#latest  #options

애니메이션을 위한 설정입니다.
차트 종류에 따라 다른 옵션이 제공됩니다.

Options

  • global.animation.show = true/false

  • global.animation.type
    애니메이션 타입을 설정합니다.

  • global.animation.delay
    애니메이션 효과가 완료되기까지의 시간을 설정합니다. (밀리초단위)

  • global.animation.ease
    애니메이션 가속도 효과를 설정합니다.

Example

사용 가능 차트 :

Code

var chart = sb.chart.render("#chartWrap1", {
    global: {
        animation: {
            show: true
        }
    },
    data: {
        type: "bar",
        columns: [
            ["2015",3.51,4.6,3.43,7.96,3.37,5.83,0.35,3.23,-0.09,4.47,2.21,1.13,0.77,0.35,0.92,2.65,1.64,8.08],
            ["2016",0.71,2.14,3.18,-1.84,0.79,0.35,0.28,0.44,0.79,0.84,1.33,-0.7,-1.51,0.09,1.05,-1.66,-0.58,4.63],
            ["2017",1.48,3.64,2.35,1.29,1.42,1.34,1.51,-1.08,4.29,1.67,2.4,-0.36,-0.53,1.98,2.23,-0.9,-1.62,1.66]
        ]
    }
});