UCandlestickChart constructor

const UCandlestickChart({
  1. required List<UCandle> candles,
  2. Key? key,
  3. String? title,
  4. Color? upColor,
  5. Color? downColor,
  6. UChartStyle style = const UChartStyle(),
  7. double height = 280,
})

Implementation

const UCandlestickChart({
  required this.candles,
  super.key,
  this.title,
  this.upColor,
  this.downColor,
  this.style = const UChartStyle(),
  this.height = 280,
});