NiceStockChart constructor

const NiceStockChart({
  1. Key? key,
  2. required List<NiceStockDataPoint> data,
  3. NiceStockStyle style = NiceStockStyle.candlestick,
  4. bool showVolume = true,
  5. double height = 300,
  6. Color? bullColor,
  7. Color? bearColor,
})

Implementation

const NiceStockChart({
  super.key,
  required this.data,
  this.style = NiceStockStyle.candlestick,
  this.showVolume = true,
  this.height = 300,
  this.bullColor,
  this.bearColor,
});