mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
5.9 KiB
168 lines
5.9 KiB
// Copyright 2018 the Charts project authors. Please see the AUTHORS file
|
|
// for details.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
/// Example of an ordinal combo chart with two series rendered as bars, and a
|
|
/// third rendered as a line.
|
|
// EXCLUDE_FROM_GALLERY_DOCS_START
|
|
import 'dart:math';
|
|
// EXCLUDE_FROM_GALLERY_DOCS_END
|
|
import 'package:flutter/material.dart';
|
|
import 'package:charts_flutter/flutter.dart' as charts;
|
|
|
|
class OrdinalComboBarLineChart extends StatelessWidget {
|
|
final List<charts.Series<dynamic, String>> seriesList;
|
|
final bool? animate;
|
|
|
|
const OrdinalComboBarLineChart(this.seriesList, {this.animate, Key? key})
|
|
: super(key: key);
|
|
|
|
factory OrdinalComboBarLineChart.withSampleData() {
|
|
return OrdinalComboBarLineChart(
|
|
_createSampleData(),
|
|
// Disable animations for image tests.
|
|
animate: false,
|
|
);
|
|
}
|
|
|
|
// EXCLUDE_FROM_GALLERY_DOCS_START
|
|
// This section is excluded from being copied to the gallery.
|
|
// It is used for creating random series data to demonstrate animation in
|
|
// the example app only.
|
|
factory OrdinalComboBarLineChart.withRandomData() {
|
|
return OrdinalComboBarLineChart(_createRandomData());
|
|
}
|
|
|
|
/// Create random data.
|
|
static List<charts.Series<OrdinalSales, String>> _createRandomData() {
|
|
final random = Random();
|
|
|
|
final desktopSalesData = [
|
|
OrdinalSales('2014', random.nextInt(100)),
|
|
OrdinalSales('2015', random.nextInt(100)),
|
|
OrdinalSales('2016', random.nextInt(100)),
|
|
OrdinalSales('2017', random.nextInt(100)),
|
|
];
|
|
|
|
final tableSalesData = [
|
|
OrdinalSales('2014', random.nextInt(100)),
|
|
OrdinalSales('2015', random.nextInt(100)),
|
|
OrdinalSales('2016', random.nextInt(100)),
|
|
OrdinalSales('2017', random.nextInt(100)),
|
|
];
|
|
|
|
final mobileSalesData = [
|
|
OrdinalSales('2014', random.nextInt(100)),
|
|
OrdinalSales('2015', random.nextInt(100)),
|
|
OrdinalSales('2016', random.nextInt(100)),
|
|
OrdinalSales('2017', random.nextInt(100)),
|
|
];
|
|
|
|
return [
|
|
charts.Series<OrdinalSales, String>(
|
|
id: 'Desktop',
|
|
colorFn: (_, __) => charts.MaterialPalette.blue.shadeDefault,
|
|
domainFn: (OrdinalSales sales, _) => sales.year,
|
|
measureFn: (OrdinalSales sales, _) => sales.sales,
|
|
data: desktopSalesData),
|
|
charts.Series<OrdinalSales, String>(
|
|
id: 'Tablet',
|
|
colorFn: (_, __) => charts.MaterialPalette.red.shadeDefault,
|
|
domainFn: (OrdinalSales sales, _) => sales.year,
|
|
measureFn: (OrdinalSales sales, _) => sales.sales,
|
|
data: tableSalesData),
|
|
charts.Series<OrdinalSales, String>(
|
|
id: 'Mobile',
|
|
colorFn: (_, __) => charts.MaterialPalette.green.shadeDefault,
|
|
domainFn: (OrdinalSales sales, _) => sales.year,
|
|
measureFn: (OrdinalSales sales, _) => sales.sales,
|
|
data: mobileSalesData)
|
|
// Configure our custom line renderer for this series.
|
|
..setAttribute(charts.rendererIdKey, 'customLine'),
|
|
];
|
|
}
|
|
// EXCLUDE_FROM_GALLERY_DOCS_END
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return charts.OrdinalComboChart(seriesList,
|
|
animate: animate,
|
|
// Configure the default renderer as a bar renderer.
|
|
defaultRenderer: charts.BarRendererConfig(
|
|
groupingType: charts.BarGroupingType.grouped),
|
|
// Custom renderer configuration for the line series. This will be used for
|
|
// any series that does not define a rendererIdKey.
|
|
customSeriesRenderers: [
|
|
charts.LineRendererConfig(
|
|
// ID used to link series to this renderer.
|
|
customRendererId: 'customLine')
|
|
]);
|
|
}
|
|
|
|
/// Create series list with multiple series
|
|
static List<charts.Series<OrdinalSales, String>> _createSampleData() {
|
|
final desktopSalesData = [
|
|
OrdinalSales('2014', 5),
|
|
OrdinalSales('2015', 25),
|
|
OrdinalSales('2016', 100),
|
|
OrdinalSales('2017', 75),
|
|
];
|
|
|
|
final tableSalesData = [
|
|
OrdinalSales('2014', 5),
|
|
OrdinalSales('2015', 25),
|
|
OrdinalSales('2016', 100),
|
|
OrdinalSales('2017', 75),
|
|
];
|
|
|
|
final mobileSalesData = [
|
|
OrdinalSales('2014', 10),
|
|
OrdinalSales('2015', 50),
|
|
OrdinalSales('2016', 200),
|
|
OrdinalSales('2017', 150),
|
|
];
|
|
|
|
return [
|
|
charts.Series<OrdinalSales, String>(
|
|
id: 'Desktop',
|
|
colorFn: (_, __) => charts.MaterialPalette.blue.shadeDefault,
|
|
domainFn: (OrdinalSales sales, _) => sales.year,
|
|
measureFn: (OrdinalSales sales, _) => sales.sales,
|
|
data: desktopSalesData),
|
|
charts.Series<OrdinalSales, String>(
|
|
id: 'Tablet',
|
|
colorFn: (_, __) => charts.MaterialPalette.red.shadeDefault,
|
|
domainFn: (OrdinalSales sales, _) => sales.year,
|
|
measureFn: (OrdinalSales sales, _) => sales.sales,
|
|
data: tableSalesData),
|
|
charts.Series<OrdinalSales, String>(
|
|
id: 'Mobile ',
|
|
colorFn: (_, __) => charts.MaterialPalette.green.shadeDefault,
|
|
domainFn: (OrdinalSales sales, _) => sales.year,
|
|
measureFn: (OrdinalSales sales, _) => sales.sales,
|
|
data: mobileSalesData)
|
|
// Configure our custom line renderer for this series.
|
|
..setAttribute(charts.rendererIdKey, 'customLine'),
|
|
];
|
|
}
|
|
}
|
|
|
|
/// Sample ordinal data type.
|
|
class OrdinalSales {
|
|
final String year;
|
|
final int sales;
|
|
|
|
OrdinalSales(this.year, this.sales);
|
|
}
|