NiceStockChart constructor
- Key? key,
- required List<
NiceStockDataPoint> data, - NiceStockStyle style = NiceStockStyle.candlestick,
- bool showVolume = true,
- double height = 300,
- Color? bullColor,
- Color? bearColor,
Implementation
const NiceStockChart({
super.key,
required this.data,
this.style = NiceStockStyle.candlestick,
this.showVolume = true,
this.height = 300,
this.bullColor,
this.bearColor,
});