GraphClickEvent
touchgfx/widgets/graph/AbstractDataGraph.hpp
An object of this type is passed with each callback that is sent when the graph is clicked. The object contains the data index that was pressed and the details of the click event, e.g. PRESSED, RELEASED and screen coordinates.
Public Functions
GraphClickEvent(int16_t i, const ClickEvent & event) | |
Initializes a new instance of the GraphClickEvent class. | |
Public Attributes
const ClickEvent & | clickEvent |
The ClickEvent that caused the callback to be executed. | |
int16_t | index |
The index of the item clicked. | |
Public Functions Documentation
GraphClickEvent
GraphClickEvent | ( | int16_t | i , | ||
const ClickEvent & | event | ||||
) |
Initializes a new instance of the GraphClickEvent class.
Parameters:
i | The index of the item clicked. |
event | The ClickEvent that caused the callback to be executed. |
See also:
Public Attributes Documentation
clickEvent
const ClickEvent & clickEvent
The ClickEvent that caused the callback to be executed.
index
int16_t index
The index of the item clicked.