Skip to content

Commit

Permalink
[Ops] fix super err
Browse files Browse the repository at this point in the history
  • Loading branch information
nitin-janyani committed Jan 20, 2025
1 parent 8572602 commit a02f725
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/src/chart/bar_chart/bar_chart_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,8 @@ class BarTouchData extends FlTouchData<BarTouchResponse> with EquatableMixin {
touchCallback,
mouseCursorResolver,
longPressDuration,
null,
null,
);

/// Configs of how touch tooltip popup.
Expand Down
2 changes: 2 additions & 0 deletions lib/src/chart/line_chart/line_chart_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -875,6 +875,8 @@ class LineTouchData extends FlTouchData<LineTouchResponse> with EquatableMixin {
touchCallback,
mouseCursorResolver,
longPressDuration,
null,
null,
);

/// Configs of how touch tooltip popup.
Expand Down
2 changes: 2 additions & 0 deletions lib/src/chart/radar_chart/radar_chart_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,8 @@ class RadarTouchData extends FlTouchData<RadarTouchResponse>
touchCallback,
mouseCursorResolver,
longPressDuration,
null,
null,
);

/// we find the nearest spots on touched position based on this threshold
Expand Down
2 changes: 2 additions & 0 deletions lib/src/chart/scatter_chart/scatter_chart_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,8 @@ class ScatterTouchData extends FlTouchData<ScatterTouchResponse>
touchCallback,
mouseCursorResolver,
longPressDuration,
null,
null,
);

/// show a tooltip on touched spots
Expand Down

0 comments on commit a02f725

Please sign in to comment.