Search
 
SCRIPT & CODE EXAMPLE
 

DART

flutter timeseries chart

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

class SimpleTimeSeriesChart extends StatelessWidget {
  final List<charts.Series> seriesList;
  final bool animate;

  SimpleTimeSeriesChart(this.seriesList, {this.animate});

  /// Creates a [TimeSeriesChart] with sample data and no transition.
  factory SimpleTimeSeriesChart.withSampleData() {
    return new SimpleTimeSeriesChart(
      _createSampleData(),
      // Disable animations for image tests.
      animate: false,
    );
  }


  @override
  Widget build(BuildContext context) {
    return new charts.TimeSeriesChart(
      seriesList,
      animate: animate,
      // Optionally pass in a [DateTimeFactory] used by the chart. The factory
      // should create the same type of [DateTime] as the data provided. If none
      // specified, the default creates local date time.
      dateTimeFactory: const charts.LocalDateTimeFactory(),
    );
  }

  /// Create one series with sample hard coded data.
  static List<charts.Series<TimeSeriesSales, DateTime>> _createSampleData() {
    final data = [
      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),
    ];

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

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

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

PREVIOUS NEXT
Code Example
Dart :: Concatenate two list in Flutter 
Dart :: main axis and cross axis in flutter 
Dart :: dart call nullable function 
Dart :: dart then method 
Dart :: how to create random gradient in flutter 
Dart :: Example of shorthand (arrow syntax) function Dart 
Dart :: how to create space between list on flutter 
Dart :: flutter write file 
Dart :: install fvm in flutter using pub package 
Dart :: flutter how to get height and width of screen 
Dart :: flutter getit short 
Dart :: dart .. operator 
Dart :: multi-dimensional list in dart 
Dart :: creating a clas in dart 
Dart :: Get Prime Number in dart 
Dart :: how to perform a text search over json data in flutter 
Dart :: how to automatically fix all breaking changes in dart 
Dart :: flutter download file 
Swift :: on swipe get contentoffset swift collectionview 
Swift :: swift generate uuid 
Swift :: uitableviewcell automatic height 
Swift :: how to dismiss keyboard swiftui 
Swift :: uicollectionview detect scroll swift 
Swift :: swift get day from available string 
Swift :: swift uiview gradient 
Swift :: swift read file 
Swift :: and in swif 
Swift :: define struct swift 
Swift :: changing color of background swift 
Swift :: swift dictionary get key from valye 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =