calculateLocation method
To get the location of chart tooltip
Implementation
void calculateLocation(Offset? position) {
_x = position?.dx;
_y = position?.dy;
}
To get the location of chart tooltip
void calculateLocation(Offset? position) {
_x = position?.dx;
_y = position?.dy;
}