使用Shield UI Chart显示外汇汇率

时间:2013-07-22 08:55:59

标签: javascript jquery ajax shieldui

我想使用Shield UI Chart来访问和可视化外汇数据。我已经想出了如何做ajax的东西:

$.ajax({
  url: 'http://api.apirates.com/jsonp/update',
  dataType: 'jsonp',
  success: function (data) {
 }
)

但是,我无法弄清楚如何从检索到的数据中提取所需的货币汇率。

1 个答案:

答案 0 :(得分:0)

可用费率作为键索引数组返回。可以通过与此类似的方式检索它们:

data.ticks.EURUSD,

并包含一个值,由每个ajax调用返回。您可以进一步为数组分配尽可能多的汇率,然后将它们传递给图表。您需要声明数组:

var EURUSD = new Array();
and than pass it to the chart: 
     dataSeries: [
                 {
                 seriesType: 'line',
                 collectionAlias: 'EUR/USD',
                 data: EURUSD,
                 }
    ]