PointData constructor
PointData({})
Implementation
PointData(
{this.x = 0,
this.y = 0,
this.offset = const Offset(0, 0),
this.pointText,
this.pointTextStyle,
this.isClickable = true,
required this.lineTouchData}) {
pointText ??= '$y';
pointTextStyle ??= TextStyle(
fontWeight: FontWeight.w500,
fontSize: 12,
color: BaseThemeConfig.instance.getConfig().commonConfig.colorTextBase);
}