맨위로가기
 

SBCHART

닫기

data.stackCombiJson

#2.0.118

Stacked 계열 차트(Stacked Bar, Stacked Area, Stacked Area-Spline)에서 다른 차트와 combination을 할때 다른차트의 데이터 및 Type을 지정합니다.
전체 data중에서 stackCombiJson에 포함되지 않은 data는 모두 stack으로 처리됩니다.
Json의 배열형식이며, Json에는 id와 type이 필수로 들어가야 합니다.
id는 범례에 해당하는 key값이며, type은 해당 데이터의 combination 차트type을 지정합니다.
가능한 combination 차트type은 bar, bubble, step, area-step, line, spline, area, area-spline 만 가능합니다.

  • Type : String[]{}
  • Default : {}
  • Format
    data: {
        groups: [
            ["2015", "2016"],
        ],
        stackCombiJson: [
            {"id": "2017", "type": "spline"},
        ]
    }
    
  • 위 예제에서 “2015”, “2016”, “2017” 은 범례 아이디입니다.