UWaterfallChart constructor

const UWaterfallChart({
  1. required List<UWaterfallItem> items,
  2. Key? key,
  3. String? title,
  4. Color? upColor,
  5. Color? downColor,
  6. Color? totalColor,
  7. UChartStyle style = const UChartStyle(),
  8. double height = 260,
})

Implementation

const UWaterfallChart({
  required this.items,
  super.key,
  this.title,
  this.upColor,
  this.downColor,
  this.totalColor,
  this.style = const UChartStyle(),
  this.height = 260,
});