animated_line_chart 0.0.3 animated_line_chart: ^0.0.3 copied to clipboard
Animated flutter line chart. Support datetime x axis, divide region based on datetime
import 'package:animated_line_chart/animated_line_chart.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Animated Line Chart',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Animated Line Chart'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final List<DataPoint> data = [
DataPoint(x: DateTime(2023, 1, 1), y: 10000000000000),
DataPoint(x: DateTime(2023, 1, 15), y: 3000000000000),
DataPoint(x: DateTime(2023, 2, 1), y: 20000000000000),
DataPoint(x: DateTime(2023, 2, 15), y: 40000000000000),
DataPoint(x: DateTime(2023, 3, 1), y: 50000000000000),
DataPoint(x: DateTime(2023, 3, 15), y: 60000000000000),
DataPoint(x: DateTime(2023, 3, 16), y: 60000000000000),
DataPoint(x: DateTime(2023, 3, 17), y: 60000000000000),
DataPoint(x: DateTime(2023, 3, 18), y: 60000000000000),
];
@override
Widget build(BuildContext context) {
Size size = MediaQuery.of(context).size;
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: SizedBox(
width: size.width, // set the desired width
height: 200, // set the desired height
child: AnimatedLineChart(
data: data,
dividerX: DateTime(2023, 2, 1),
// dividerXColor: Colors.grey,
leftChartColor: Colors.grey,
rightChartColor: Colors.green,
// showXLabel: true,
// showYLabel: true,
// labelTextStyle: const TextStyle(color: Colors.grey, fontSize: 12),
// showDotAnimation: false,
// showLastData: true,
),
),
),
);
}
}