Uses of Class
org.pepstock.charba.client.items.ActiveDatasetElement
-
Packages that use ActiveDatasetElement Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.data Contains all elements to configure the datasets of a chart instance (know as chart data at instance level).org.pepstock.charba.client.gwt.widgets Contains all charts classes wrapped as GWT widget in order to enable to use inside to GWT UIBinder. -
-
Uses of ActiveDatasetElement in org.pepstock.charba.client
Methods in org.pepstock.charba.client that return types with arguments of type ActiveDatasetElement Modifier and Type Method Description List<ActiveDatasetElement>
AbstractChart. getActiveElements()
Returns the active (hovered) elements for the chart.List<ActiveDatasetElement>
IsChart. getActiveElements()
Returns the active (hovered) elements for the chart.List<ActiveDatasetElement>
AbstractChart. getTooltipActiveElements()
Returns the active tooltip elements for the chart.List<ActiveDatasetElement>
IsChart. getTooltipActiveElements()
Returns the active tooltip elements for the chart.Methods in org.pepstock.charba.client with parameters of type ActiveDatasetElement Modifier and Type Method Description void
AbstractChart. setActiveElements(ActiveDatasetElement... elements)
Sets the active (hovered) elements for the chart.void
IsChart. setActiveElements(ActiveDatasetElement... elements)
Sets the active (hovered) elements for the chart.void
AbstractChart. setTooltipActiveElements(ActiveDatasetElement... elements)
Sets the active tooltip elements for the chart.void
IsChart. setTooltipActiveElements(ActiveDatasetElement... elements)
Sets the active tooltip elements for the chart.Method parameters in org.pepstock.charba.client with type arguments of type ActiveDatasetElement Modifier and Type Method Description void
AbstractChart. setActiveElements(List<ActiveDatasetElement> elements)
Sets the active (hovered) elements for the chart.void
IsChart. setActiveElements(List<ActiveDatasetElement> elements)
Sets the active (hovered) elements for the chart.void
AbstractChart. setTooltipActiveElements(List<ActiveDatasetElement> elements)
Sets the active tooltip elements for the chart.void
IsChart. setTooltipActiveElements(List<ActiveDatasetElement> elements)
Sets the active tooltip elements for the chart. -
Uses of ActiveDatasetElement in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return types with arguments of type ActiveDatasetElement Modifier and Type Method Description List<ActiveDatasetElement>
Data. createActiveElementsByDataIndex(int... dataIndexes)
Creates a list of active elements instances by an array of data indexes, for all visible data sets.List<ActiveDatasetElement>
Data. createActiveElementsByDatasetIndex(int... datasetIndexes)
Creates a list of active elements instances by an array of data set indexes, for visible data sets. -
Uses of ActiveDatasetElement in org.pepstock.charba.client.gwt.widgets
Methods in org.pepstock.charba.client.gwt.widgets that return types with arguments of type ActiveDatasetElement Modifier and Type Method Description List<ActiveDatasetElement>
AbstractChartWidget. getActiveElements()
List<ActiveDatasetElement>
AbstractChartWidget. getTooltipActiveElements()
Methods in org.pepstock.charba.client.gwt.widgets with parameters of type ActiveDatasetElement Modifier and Type Method Description void
AbstractChartWidget. setActiveElements(ActiveDatasetElement... elements)
void
AbstractChartWidget. setTooltipActiveElements(ActiveDatasetElement... elements)
Method parameters in org.pepstock.charba.client.gwt.widgets with type arguments of type ActiveDatasetElement Modifier and Type Method Description void
AbstractChartWidget. setActiveElements(List<ActiveDatasetElement> elements)
void
AbstractChartWidget. setTooltipActiveElements(List<ActiveDatasetElement> elements)
-