Flutter-JSON和时间序列图 [英] Flutter - JSON and Time Series Charts

查看:145
本文介绍了Flutter-JSON和时间序列图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在时序图表中显示一些数据,我找到了一个示例 https://google.github.io/charts/flutter/example/time_series_charts/simple.html ,但数据并非来自互联网。问题在于如何将JSON数据应用于时间序列数据。时间序列数据的代码如下:

I am trying to display some data in a time-series chart, I found an example "https://google.github.io/charts/flutter/example/time_series_charts/simple.html" but the data is not request from internet. The problem is that how to apply the JSON data into a time-series data. The code of a time-series data as the following:

final data = [
      // How to apply the JSON data in TimeSeriesSales ?
      new TimeSeriesSales(new DateTime(2017, 9, 19), 5),
      new TimeSeriesSales(new DateTime(2017, 9, 26), 25),
      new TimeSeriesSales(new DateTime(2017, 10, 3), 100),
      new TimeSeriesSales(new DateTime(2017, 10, 10), 75),
    ];

有完整的简单代码可供参考。请随意发表评论。谢谢。

There is a completed simple code for reference. Please feel free to comment. Thank you.

import 'dart:async';
import 'dart:convert';
import 'package:http/http.dart' as http;

import 'package:charts_flutter/flutter.dart' as charts;
import 'package:flutter/material.dart';

/// Sample time series data type.
class TimeSeriesSales {
  final DateTime time;
  final int sales;

  TimeSeriesSales(this.time, this.sales);
}

class ItemDetailsPage extends StatefulWidget {
  @override
  _ItemDetailsPageState createState() => new _ItemDetailsPageState();
}

class _ItemDetailsPageState extends State<ItemDetailsPage> {
  String url =
      "https://min-api.cryptocompare.com/data/histoday?fsym=BTC&tsym=USD&limit=1&aggregate=1&allData=true";

  List dataJSON;

  Future<String> getCoinsTimeSeries() async {
    var response = await http
        .get(Uri.encodeFull(url), headers: {"Accept": "application/json"});

    setState(() {
      var extractdata = json.decode(response.body);
      dataJSON = extractdata["Data"];
    });
  }

  @override
  void initState() {
    this.getCoinsTimeSeries();
  }

  @override
  Widget build(BuildContext context) {
    final data = [
      // How to apply the JSON data in TimeSeriesSales ?
      new TimeSeriesSales(new DateTime(2017, 9, 19), 5),
      new TimeSeriesSales(new DateTime(2017, 9, 26), 25),
      new TimeSeriesSales(new DateTime(2017, 10, 3), 100),
      new TimeSeriesSales(new DateTime(2017, 10, 10), 75),
    ];

    var series = [
      new charts.Series<TimeSeriesSales, DateTime>(
        id: 'Sales',
        colorFn: (_, __) => charts.MaterialPalette.blue.shadeDefault,
        domainFn: (TimeSeriesSales sales, _) => sales.time,
        measureFn: (TimeSeriesSales sales, _) => sales.sales,
        data: data,
      )
    ];

    var chart = new charts.TimeSeriesChart(
      series,
      animate: true,
    );

    var chartWidget = new Padding(
      padding: new EdgeInsets.all(32.0),
      child: new SizedBox(
        height: 200.0,
        child: chart,
      ),
    );

    return Scaffold(
      appBar: new AppBar(title: new Text("Details")),
      body: new Center(
        child: new Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            new Text(
              'You have pushed the button this many times:',
            ),
            chartWidget,
          ],
        ),
      ),
    );
  }
}


推荐答案

首先要做的是重构 TimeSeriesSales ,以使其在您的应用程序中有意义,例如:

The first thing to do is to refactor TimeSeriesSales so that it makes sense in your application, for example:

class TimeSeriesPrice {
  final DateTime time;
  final double price;
  TimeSeriesSales(this.time, this.price);
}

接下来,您需要构建数据

Next, you need to build data.

List<TimeSeriesPrice> data = [];
// populate data with a list of dates and prices from the json
for (Map m in dataJSON) {
  data.add(TimeSeriesPrice(m['date'], m['price']);
}
var series = ... 

您不要给出json格式的示例,所以这是一个猜测(您可能必须将json字符串date解析为Dart DateTime。)

You don't give an example of the json format, so this is a guess. (You are likely to have to parse the json string date into a Dart DateTime.)

这篇关于Flutter-JSON和时间序列图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆