从highcharts图表反向工程网站数据

时间:2017-08-08 01:52:47

标签: reverse-engineering

我喜欢对以下高级图表进行反向工程:Bitconnect

这样我就可以更好地计算我对该网站的兴趣。

谢谢

1 个答案:

答案 0 :(得分:0)

开发工具 - >来源 - >找到元素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: ' %'
  }
 }]
});
相关问题