highchats-y축 경계선
2335 단어 HA
$(function () {
var $report = $('#report');
$('#container').highcharts({
chart: {
},
xAxis: {
plotLines: [{ // mark the weekend
color: 'red',
width: 2,
value: Date.UTC(2010, 0, 4),
dashStyle: 'longdashdot'
},{ // mark the weekend
color: 'red',
width: 2,
value: Date.UTC(2010, 0, 6),
dashStyle: 'longdashdot'
}],
tickInterval: 24 * 3600 * 1000,
// one day
type: 'datetime'
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4],
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000}]
});
});
가로 좌표는 숫자:
$(function () {
var $report = $('#report');
$('#container').highcharts({
chart: {
},
xAxis: {
allowDecimals: false
},
plotOptions: {
series: {
pointStart: 100
}
},
xAxis: {
plotLines: [{ // mark the weekend
color: 'red',
width: 2,
value:102,
dashStyle: 'ShortDash'
},{ // mark the weekend
color: 'red',
width: 2,
value: 103,
dashStyle: 'ShortDash'
}]
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4]
}]
});
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
36일차 (01-27-2021)NQueen 해답이 나오지 않아 고민하다, 친구에게 코드 점검을 부탁했다. 처음 내가 쓴 코드는 위와 같이 토글을 하고 토글한 자리가 충돌이 있는 자리인지 아닌지를 구별하여 재귀를 실행하거나 재토글을 하거나 하는 것...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.