2017-08-08 6 views

答えて

0

のDevツールをありがとう - >ソース - >見つかった要素のidが - > idのソースを検索 - >以下のコードを発見しました。

$('#highchartload-closing-day').highcharts({ 
chart: { 
    zoomType: 'x' 
}, 
title: { 
    text: '' 
}, 
subtitle: { 
    text: 'Click and drag in the plot area to zoom in' 
}, 
xAxis: [{ 
    categories: date, 
    type: 'datetime', 
    crosshair: true 
}], 
yAxis: [{ 
    labels: { 
    format: '{value} %', 
    style: { 
    color: '#FA890F' 
    } 
    }, 
    title: { 
    text: 'Rate of interest', 
    style: { 
    color: Highcharts.getOptions().colors[1] 
    } 
    } 
}], 
series: [{ 
    name: 'Rate of Interest', 
    type: 'column', 
    yAxis: 0, 
    data: rate_of_interest, 
    color: '#FFC46D', 
    tooltip: { 
    valueSuffix: ' %' 
    } 
}] 
}); 
関連する問題