main_class/src/chart/base/base_chart/base_chart_data library
Classes
- AFlBorderData
- Holds data to drawing border around the chart.
- BaseChartData
- This class holds all data needed for BaseChartPainter.
- BaseTouchResponse
- This class holds the touch response details of charts.
- FlClipData
- Holds data to clipping chart around its borders.
-
FlTouchData<
R extends BaseTouchResponse> - Holds data to handle touch events, and touch responses in abstract way.
Enums
- FLHorizontalAlignment
- Controls an element horizontal alignment to given point.
Typedefs
-
BaseTouchCallback<
R extends BaseTouchResponse> = void Function(AFlTouchEvent, R?) - Chart's touch callback.
-
MouseCursorResolver<
R extends BaseTouchResponse> = MouseCursor Function(AFlTouchEvent, R?) -
It gives you the happened AFlTouchEvent and existed
R
data at the event's location, then you should provide a MouseCursor to change the cursor at the event's location. For example you can pass the SystemMouseCursors.click to change the mouse cursor to click.