simple_candlestick_chart
A simple candlestick chart for flutter. Supports smooth scroll and zoom.
example.mp4
Usage
import 'package:simple_candlestick_chart/simple_candlestick_chart.dart';
final data = [
CandlestickData(DateTime.parse('2020-01-01 09:15'), 3990.99, 3991.17, 3990.78, 3993.55, 12869.11),
CandlestickData(DateTime.parse('2020-01-01 09:00'), 3991.17, 3989.5, 3985.87, 3993.37, 13191.45),
...
];
SimpleCandlestickChart(
data: data,
increaseColor: Colors.teal,
decreaseColor: Colors.redAccent,
);