Package | Description |
---|---|
org.pepstock.charba.client.events |
Contains all events to interact with chart instance.
|
org.pepstock.charba.client.items |
Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or
controllers.
|
Modifier and Type | Method and Description |
---|---|
LegendItem |
LegendLeaveEvent.getItem()
Returns the legend item related to the leaving.
|
LegendItem |
LegendHoverEvent.getItem()
Returns the legend item related to the hover
|
LegendItem |
LegendClickEvent.getItem()
Returns the legend item related to the click
|
Constructor and Description |
---|
LegendClickEvent(NativeEvent nativeEvent,
LegendItem item)
Creates the event with legend item related to the click
|
LegendHoverEvent(NativeEvent nativeEvent,
LegendItem item)
Creates the event with legend item related to the hover
|
LegendLeaveEvent(NativeEvent nativeEvent,
LegendItem item)
Creates the event with legend item related to the leaving.
|
Modifier and Type | Class and Description |
---|---|
class |
LegendLabelItem
This object is created by callbacks and returned to HCART.JS as native object to configure the legend.
|
Modifier and Type | Method and Description |
---|---|
List<LegendItem> |
LegendNode.getItems()
Returns the list of items of the legend.
|