1
히브리어 이름으로 하이 차트를 사용하고 있습니다. 음수 값을 사용하면 도구 설명의 오른쪽에 빼기 기호 (-)가 표시됩니다.하이 차트 : 히브리어의 음수 값
$(function() {
Highcharts.chart('container', {
chart: {
type: 'column'
},
title: {
text: 'Column chart with negative values'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
},
credits: {
enabled: false
},
series: [{
name: 'שרה',
data: [5, 3, -4, 7, -2]
}, {
name: 'שי',
data: [2, -2, -3, 2, 1]
}]
});
});
어떻게 왼쪽에 표시하려면?
도움 주셔서 감사합니다.
사용 tooltip.formatter 객체 툴팁. 데모를 확인하십시오. http://jsfiddle.net/r0rLyfam/2/ – morganfree
감사합니다. morganfree! 가장 간단한 방법이 있습니까? – Firemen26