맨위로가기
 

SBCHART

닫기

Accessibility Pattern

#latest  #options

웹 접근성을 위한 설정입니다.
색각 이상(색약, 색맹)을 위한 패턴 적용 여부를 설정합니다.

Options

  • global.pattern = true/false

  • global.dash = true/false

Example

사용 가능 차트 :

Code

var chart = sb.chart.render("#chartWrap1", {
    global: {
        pattern: true
    },
    data: {
        type: "line",
        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]
        ]
    }
});

document.getElementById("chkPattern").onchange = function() {
    chart.global().pattern = this.checked;
    chart.render();
}
document.getElementById("chkDash").onchange = function() {
    chart.global().dash = this.checked;
    chart.render();
}