KLineInfoStyle constructor

const KLineInfoStyle({
  1. Color backgroundColor = const Color(0xccffffff),
  2. TextStyle textStyle = const TextStyle(color: Colors.blueGrey, fontSize: 12.0, height: 1.0),
})

Creates long-press candle detail overlay styling.

Implementation

const KLineInfoStyle({
  this.backgroundColor = const Color(0xccffffff),
  this.textStyle = const TextStyle(
    color: Colors.blueGrey,
    fontSize: 12.0,
    height: 1.0,
  ),
});